linwe
2023-12-06 b6506a991d36eb7d762b1135a5e8d8436330ca97
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;
}