linwe
2024-05-24 b6d1acb0c319e60fc4c03ed2fdd19be16440e2de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.springblade.modules.sse.vo;
 
import lombok.Data;
 
@Data
public class SseVO {
 
    /**
     * 类型 web,app,小程序
     */
    private String type;
 
    /**
     * 用户唯一值
     */
    private String userId;
}