Commit 325493de authored by 高建强's avatar 高建强

导出文件实体类调整

parent f92e0714
......@@ -16,191 +16,191 @@ import java.util.Date;
@ApiModel(value = "EXPersonUser", description = "")
public class EXPersonUser {
@ExcelProperty(value = "姓名", index = 1)
@ExcelProperty(value = "姓名", index = 0)
@ApiModelProperty(value = "姓名")
private String name;
@ExcelProperty(value = "工号", index = 2)
@ExcelProperty(value = "工号", index = 1)
@ApiModelProperty(value = "工号")
private String jobNumber;
@ExcelProperty(value = "所属场站", index = 3)
@ExcelProperty(value = "所属场站", index = 2)
@ApiModelProperty(value = "所属场站")
private String projectName;
@ExcelProperty(value = "部门", index = 4)
@ExcelProperty(value = "部门", index = 3)
@ApiModelProperty(value = "部门")
private String departmentName;
@ExcelProperty(value = "证件类型", index = 5)
@ExcelProperty(value = "证件类型", index = 4)
@ApiModelProperty(value = "证件类型(0-身份证)")
private String idType;
@ExcelProperty(value = "证件编号", index = 6)
@ExcelProperty(value = "证件编号", index = 5)
@ApiModelProperty(value = "证件编号")
private String idNumber;
@ExcelProperty(value = "平台账号名称", index = 7)
@ExcelProperty(value = "平台账号名称", index = 6)
@ApiModelProperty(value = "平台账号名称")
private String accountName;
@ExplicitConstraint(indexNum = 8, source = {"男","女"}) //固定下拉内容
@ExcelProperty(value = "性别", index = 8)
@ExplicitConstraint(indexNum = 7, source = {"男","女"}) //固定下拉内容
@ExcelProperty(value = "性别", index = 7)
@ApiModelProperty(value = "性别( 0-男 1-女 )")
private String sex;
@ExcelProperty(value = "生日", index = 9)
@ExcelProperty(value = "生日", index = 8)
@ApiModelProperty(value = "生日")
private Date birthday;
@ExcelProperty(value = "年龄", index = 10)
@ExcelProperty(value = "年龄", index = 9)
@ApiModelProperty(value = "年龄")
private Integer age;
@ExcelProperty(value = "籍贯", index = 11)
@ExcelProperty(value = "籍贯", index = 10)
@ApiModelProperty(value = "籍贯")
private String nativePlace;
@ExcelProperty(value = "民族", index = 12)
@ExplicitConstraint(indexNum = 12, type="MZ") //固定下拉内容
@ExcelProperty(value = "民族", index = 11)
@ExplicitConstraint(indexNum = 11, type="MZ") //固定下拉内容
@ApiModelProperty(value = "民族")
private String folkKey;
@ExcelProperty(value = "政治面貌", index =13)
@ExplicitConstraint(indexNum = 13, source = {"群众","共青团员","预备党员","中共党员"}) //固定下拉内容
@ExcelProperty(value = "政治面貌", index =12)
@ExplicitConstraint(indexNum = 12, source = {"群众","共青团员","预备党员","中共党员"}) //固定下拉内容
@ApiModelProperty(value = "政治面貌")
private String politicCountenance;
@ExcelProperty(value = "户籍地址", index = 14)
@ExcelProperty(value = "户籍地址", index = 13)
@ApiModelProperty(value = "户籍地址")
private String registeredResidenceAddress;
@ExcelProperty(value = "现住址", index = 15)
@ExcelProperty(value = "现住址", index = 14)
@ApiModelProperty(value = "现住址")
private String presentAddress;
@ExcelProperty(value = "应急电话", index = 16)
@ExcelProperty(value = "应急电话", index = 15)
@ApiModelProperty(value = "应急电话")
private String emergencyPhone;
@ExcelProperty(value = "电话", index = 17)
@ExcelProperty(value = "电话", index = 16)
@ApiModelProperty(value = "电话")
private String phone;
@ExcelProperty(value = "身高(厘米)", index = 18)
@ExcelProperty(value = "身高(厘米)", index = 17)
@ApiModelProperty(value = "身高(厘米)")
private Integer height;
@ExcelProperty(value = "体重(千克)", index = 19)
@ExcelProperty(value = "体重(千克)", index = 18)
@ApiModelProperty(value = "体重(千克)")
private Integer weight;
@ExcelProperty(value = "参加工作时间", index = 20)
@ExcelProperty(value = "参加工作时间", index = 19)
@ApiModelProperty(value = "参加工作时间")
private Date workTime;
@ExcelProperty(value = "进入本单位工作时间", index = 21)
@ExcelProperty(value = "进入本单位工作时间", index = 20)
@ApiModelProperty(value = "进入本单位工作时间")
private Date stationWorkTime;
@ExcelProperty(value = "工作所在地", index = 22)
@ExplicitConstraint(indexNum = 22, source = {"国内","国外"}) //固定下拉内容
@ExcelProperty(value = "工作所在地", index = 21)
@ExplicitConstraint(indexNum = 21, source = {"国内","国外"}) //固定下拉内容
@ApiModelProperty(value = "工作所在地key")
private String workPlaceKey;
@ExcelProperty(value = "岗位", index = 23)
@ExplicitConstraint(indexNum = 23, type="YGZYJNJDZS") //固定下拉内容
@ExcelProperty(value = "岗位", index = 22)
@ExplicitConstraint(indexNum = 22, type="YGZYJNJDZS") //固定下拉内容
@ApiModelProperty(value = "岗位")
private String postName;
@ExcelProperty(value = "是否特殊工种", index = 24)
@ExplicitConstraint(indexNum = 24, source = {"是","否"}) //固定下拉内容
@ExcelProperty(value = "是否特殊工种", index = 23)
@ExplicitConstraint(indexNum = 23, source = {"是","否"}) //固定下拉内容
@ApiModelProperty(value = "是否特殊工种")
private Integer isSpecialWork;
@ExcelProperty(value = "技能鉴定工种", index = 25)
@ExplicitConstraint(indexNum = 25, type="JNDDGZ") //固定下拉内容
@ExcelProperty(value = "技能鉴定工种", index = 24)
@ExplicitConstraint(indexNum = 24, type="JNDDGZ") //固定下拉内容
@ApiModelProperty(value = "技能鉴定工种key")
private String workTypeKey;
@ExcelProperty(value = "工种名称", index = 26)
@ExplicitConstraint(indexNum = 26, type="JNJDGZ") //固定下拉内容
@ExcelProperty(value = "工种名称", index = 25)
@ExplicitConstraint(indexNum = 25, type="JNJDGZ") //固定下拉内容
@ApiModelProperty(value = "工种名称")
private String workName;
@ExcelProperty(value = "专业技术资格名称", index = 27)
@ExplicitConstraint(indexNum = 27, type="ZYJSZGMC") //固定下拉内容
@ExcelProperty(value = "专业技术资格名称", index = 26)
@ExplicitConstraint(indexNum = 26, type="ZYJSZGMC") //固定下拉内容
@ApiModelProperty(value = "专业技术资格名称")
private String professionalTechnologyName;
@ExcelProperty(value = "技能等级", index = 28)
@ExplicitConstraint(indexNum = 28, source = {"无","初级工","中级工","高级工","技师","高级技师","其他"}) //固定下拉内容
@ExcelProperty(value = "技能等级", index = 27)
@ExplicitConstraint(indexNum = 27, source = {"无","初级工","中级工","高级工","技师","高级技师","其他"}) //固定下拉内容
@ApiModelProperty(value = "技能等级key")
private String skillLevelKey;
@ExcelProperty(value = "专业技术资格等级", index = 29)
@ExplicitConstraint(indexNum = 29, source = {"初级","中级","副高级","正高级","教授级"}) //固定下拉内容
@ExcelProperty(value = "专业技术资格等级", index = 28)
@ExplicitConstraint(indexNum = 28, source = {"初级","中级","副高级","正高级","教授级"}) //固定下拉内容
@ApiModelProperty(value = "专业技术资格等级")
private String professionalTechnologyLevelKey;
@ExcelProperty(value = "岗位执业鉴定证书", index = 30)
@ExcelProperty(value = "岗位执业鉴定证书", index = 29)
@ApiModelProperty(value = "岗位执业鉴定证书")
@ExplicitConstraint(indexNum = 30, type="POST_PRACTICE_CERTIFICATE") //固定下拉内容
@ExplicitConstraint(indexNum = 29, type="POST_PRACTICE_CERTIFICATE") //固定下拉内容
private String professionalQualificationCertificate;
@ExcelProperty(value = "岗位职业鉴定证书", index = 31)
@ExcelProperty(value = "岗位职业鉴定证书", index = 30)
@ApiModelProperty(value = " 岗位职业鉴定证书")
@ExplicitConstraint(indexNum = 31, type="POST_OCCUPATION_CERTIFICATE") //固定下拉内容
@ExplicitConstraint(indexNum = 30, type="POST_OCCUPATION_CERTIFICATE") //固定下拉内容
private String professionalCareerCertificate;
@ExcelProperty(value = "初始学历", index = 32)
@ExcelProperty(value = "初始学历", index = 31)
@ApiModelProperty(value = "初始学历key")
@ExplicitConstraint(indexNum = 32, type="CSXL") //固定下拉内容
@ExplicitConstraint(indexNum = 31, type="CSXL") //固定下拉内容
private String initialEducationKey;
@ExcelProperty(value = "现学历", index = 33)
@ExplicitConstraint(indexNum = 33, type="XXL") //固定下拉内容
@ExcelProperty(value = "现学历", index = 32)
@ExplicitConstraint(indexNum = 32, type="XXL") //固定下拉内容
@ApiModelProperty(value = "现学历key")
private String currentEducationKey;
@ExcelProperty(value = "现学历学校名称", index = 34)
@ExcelProperty(value = "现学历学校名称", index = 33)
@ApiModelProperty(value = "现学历学校名称")
private String currentSchool;
@ExcelProperty(value = "现学历所学专业", index = 35)
@ExcelProperty(value = "现学历所学专业", index = 34)
@ApiModelProperty(value = "现学历所学专业")
private String currentMajor;
@ExcelProperty(value = "证件类型", index = 36)
@ExcelProperty(value = "证件类型", index = 35)
@ApiModelProperty(value = "证件类型")
@ExplicitConstraint(indexNum = 36, type="ZDLX") //固定下拉内容
@ExplicitConstraint(indexNum = 35, type="ZDLX") //固定下拉内容
private String documentType;
@ExcelProperty(value = "证书名称", index = 37)
@ExcelProperty(value = "证书名称", index = 36)
@ApiModelProperty(value = "证书名称")
@ExplicitConstraint(indexNum = 37, type="ZYJSZGMC") //固定下拉内容
@ExplicitConstraint(indexNum = 36, type="ZYJSZGMC") //固定下拉内容
private String certificateName;
@ExcelProperty(value = "取证时间", index = 38)
@ExcelProperty(value = "取证时间", index = 37)
@ApiModelProperty(value = "取证时间")
private Date certificateTime;
@ExcelProperty(value = "发证机关", index = 39)
@ExcelProperty(value = "发证机关", index = 38)
@ApiModelProperty(value = "发证机关")
private String issuingAuthority;
@ExcelProperty(value = "证书编号", index = 40)
@ExcelProperty(value = "证书编号", index = 39)
@ApiModelProperty(value = "证书编号")
private String certificateNum;
@ExcelProperty(value = "取证项目", index = 41)
@ExcelProperty(value = "取证项目", index = 40)
@ApiModelProperty(value = "取证项目")
private String certificateProject;
@ExcelProperty(value = "有效期限", index = 42)
@ExcelProperty(value = "有效期限", index = 41)
@ApiModelProperty(value = "有效期限")
private String validPeriod;
@ExcelProperty(value = "证书等级", index = 43)
@ExcelProperty(value = "证书等级", index = 42)
@ApiModelProperty(value = "证书等级")
@ExplicitConstraint(indexNum = 43, type="ZYJSZGMC") //固定下拉内容
@ExplicitConstraint(indexNum = 42, type="ZYJSZGMC") //固定下拉内容
private String certificateGrade;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment