mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
36
37
38
39
40
41
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;
}