linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
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;
}