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
42
43
44
45
46
47
48
package com.panzhihua.common.model.vos;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author zzj
 */
@Data
public class PartyMemberListExcelVO {
    @ExcelProperty(value = "姓名",index = 1)
    private String name;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @ExcelProperty(value = "入党时间",index = 3)
    private Date joinTime;
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @ExcelProperty(value = "转正时间",index = 4)
    private Date employmentTime;
    @ExcelProperty(value = "党组织名字",index = 5)
    private String orgName;
    @ExcelProperty(value = "手机号",index = 0)
    private String phone;
    @ExcelProperty(value = "党龄",index = 2)
    private Integer partyAge;
    @ExcelProperty(value = "状态",index = 8)
    private String status;
    @ExcelProperty(value = "活动时长",index = 6)
    private Integer partyTime;
    @ExcelProperty(value = "参与活动获得积分",index = 7)
    private Integer partyInterval;
 
    private String checkUnitName;
 
    private String specialtyName;
 
    @ExcelProperty(value = "常住社区",index = 1)
    private String communityName;
    @ExcelProperty(value = "小区院落",index = 2)
    private String villageName;
    @ExcelProperty(value = "工作单位归属",index = 5)
    private String belongTo;
    @ExcelProperty(value = "服务社区",index = 6)
    private String helpCommunityName;
}