KKSU
2024-09-30 36be00e0f3cbe0d559c646fd2977e6e3a74aa6f9
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
package com.xcong.excoin.modules.otc.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(value = "ChatBoxVo", description = "返回参数类")
public class ChatBoxVo {
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @ApiModelProperty(value = "时间")
    private Date createTime;
 
    @ApiModelProperty(value = "接受ID")
    private long targetId;
 
    @ApiModelProperty(value = "发送ID")
    private long fromMemberId;
 
    @ApiModelProperty(value = "用户ID")
    private long memberId;
 
    //消息
    @ApiModelProperty(value = "消息")
    private String msg;
 
    //消息类型 1-文本2-图片
    @ApiModelProperty(value = "消息类型 1-文本2-图片")
    private Integer msgType;
 
    @ApiModelProperty(value = "是否是自己 1:是 2:否")
    private Integer isSelf;
 
}