linwe
2023-11-30 4ddd3e7456b2afe79cccf7c9f5960ea2023231f1
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;
}