You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.supervision.usermanage;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
public class UserWebSocketDTO {
|
|
|
|
private String userId;
|
|
|
|
/**
|
|
* 忽略提除的ID
|
|
*/
|
|
private String ignoreSessionId;
|
|
|
|
}
|