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