xiaoyong931011
2022-11-21 0913933fb772cf08e8102cf43475368183e989f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.dapp.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 = "ApiMessageListVo", description = "客服消息记录")
public class ApiMessageListVo {
 
    @ApiModelProperty(value = "客户消息")
    private String message;
 
    @ApiModelProperty(value = "回复消息")
    private String backMessage;
 
    @ApiModelProperty(value = "时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
}