Helius
2022-07-05 36facc93cbb7dc29b351704f5fd7960baadb170f
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
package com.xcong.farmer.cms.modules.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminMessageBoardVo", description = "留言板列表返回")
public class AdminMessageBoardVo {
 
    //ID
    private Long id;
 
    @ApiModelProperty(value = "姓名")
    private String name;
 
    @ApiModelProperty(value = "联系方式")
    private String contactValue;
 
    @ApiModelProperty(value = "留言标题")
    private String title;
 
    @ApiModelProperty(value = "留言描述")
    private String remark;
 
    @ApiModelProperty(value = "创建时间")
    private String createTime;
 
    @ApiModelProperty(value = "邮箱")
    private String paramOne;
 
    @ApiModelProperty(value = "预留")
    private String paramTwo;
 
}