xiaoyong931011
2022-07-08 bd4ab82f2e0c485f36a254e3cbf72f21dabfd628
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;
 
}