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;
|
|
}
|