package com.panzhihua.common.model.vos.community;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* title: ComActActEvaluateDO 社区活动评价表
|
* projectName 成都呐喊信息技术有限公司-智慧社区项目
|
* description: 记录和展示社区活动评价内容
|
*
|
* @author txb
|
* @date 2021/8/24 10:21
|
*/
|
|
@Data
|
@ApiModel("社区活动评价表")
|
public class ComActActEvaluateExcelVO {
|
|
@ExcelProperty(value = "姓名", index = 1)
|
private String name;
|
|
@ExcelProperty(value = "身份", index = 2)
|
private String identity;
|
|
@ExcelProperty(value = "电话", index = 3)
|
private String phone;
|
|
@ExcelProperty(value = "评价时间", index = 0)
|
private Date createAt;
|
|
@ExcelProperty(value = "评分星级", index = 4)
|
private String starLevel;
|
|
@ExcelProperty(value = "评价详情", index = 5)
|
private String evaluateContent;
|
}
|