houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.iailab.module.websocket.api.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.util.List;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年03月28日 00:06:00
 */
@Data
@Schema(name = "消息表")
public class ApiMsgDTO {
 
    @Schema(name = "id")
    private String id = Long.toString(System.currentTimeMillis());
 
    @Schema(name = "消息类型")
    private String msgType;
 
    @Schema(name = "消息标题")
    @NotNull(message="消息标题不能为空")
    private String title;
 
    @Schema(name = "消息内容")
    @NotNull(message="消息内容不能为空")
    private String content;
 
    @Schema(name = "接收人")
    @NotNull(message="接收人不能为空")
    private List<String> receivers;
 
    @Schema(name = "发送人")
    private String senderName;
 
    @Schema(name = "appKey")
    @NotNull(message="appKey不能为空")
    private String appKey;
 
    @Schema(name = "授权用户token")
    @NotNull(message="授权用户token不能为空")
    private String token;
 
}