lin
2024-03-14 c4e2c196aad8af656d94bc47e9f1a80bc504b5d7
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;
}