package com.panzhihua.common.model.vos.community;
|
|
import java.io.Serializable;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import lombok.Data;
|
|
/**
|
* @description: 批量导入实有人口
|
* @author: llming
|
*/
|
@Data
|
public class ComMngPopulationMistakeExcelVO implements Serializable {
|
|
@ExcelProperty(value = "姓名", index = 0)
|
private String name;
|
|
@ExcelProperty(value = "身份证号", index = 1)
|
private String cardNo;
|
|
@ExcelProperty(value = "民族", index = 2)
|
private String nation;
|
|
@ExcelProperty(value = "政治面貌(群众/中共党员/共青团员)", index = 3)
|
private String politicalOutlook;
|
|
@ExcelProperty(value = "是否租住", index = 4)
|
private String isRent;
|
|
@ExcelProperty(value = "与户主关系", index = 5)
|
private String relation;
|
|
@ExcelProperty(value = "街/路/巷", index = 6)
|
private String road;
|
|
@ExcelProperty(value = "小区号(政府对于每个小区都有特定编号)", index = 7)
|
private String doorNo;
|
|
@ExcelProperty(value = "楼排号", index = 8)
|
private String floor;
|
|
@ExcelProperty(value = "单元号", index = 9)
|
private String unitNo;
|
|
@ExcelProperty(value = "户室(四位数表示。前两位楼层,后两位户号)", index = 10)
|
private String houseNo;
|
|
@ExcelProperty(value = "建筑用途", index = 11)
|
private String buildPurpose;
|
|
@ExcelProperty(value = "建筑面积", index = 12)
|
private String buildArea;
|
|
@ExcelProperty(value = "房屋状态(自住/租住/其他)", index = 13)
|
private String houseStatus;
|
|
@ExcelProperty(value = "房屋用途(住宅/公寓/宿舍/仓库/其他)", index = 14)
|
private String housePurpose;
|
|
@ExcelProperty(value = "管控状态(常规/关注/管控)", index = 15)
|
private String controlStatus;
|
|
@ExcelProperty(value = "联系方式", index = 16)
|
private String phone;
|
|
@ExcelProperty(value = "籍贯", index = 17)
|
private String nativePlace;
|
|
@ExcelProperty(value = "文化程度(1.小学 2.初中 3.高中 4.中专 5.大专 6.本科 7.硕士 8.博士 9.其他)", index = 18)
|
private String cultureLevel;
|
|
@ExcelProperty(value = "婚姻状况(1.未婚 2.已婚 3.离异 4.丧偶 5.分居 6.其他)", index = 19)
|
private String marriage;
|
|
@ExcelProperty(value = "健康状况", index = 20)
|
private String healthy;
|
|
@ExcelProperty(value = "血型", index = 21)
|
private String bloodType;
|
|
@ExcelProperty(value = "宗教信仰", index = 22)
|
private String religion;
|
|
@ExcelProperty(value = "职业", index = 23)
|
private String profession;
|
|
@ExcelProperty(value = "工作单位/学校", index = 24)
|
private String workCompany;
|
|
@ExcelProperty(value = "本地/外地", index = 25)
|
private String outOrLocal;
|
|
@ExcelProperty(value = "户口所在地", index = 26)
|
private String censusRegister;
|
|
@ExcelProperty(value = "是否居住地(是/否)", index = 27)
|
private String residence;
|
|
// @ExcelProperty(value = "居住地址", index = 28)
|
// private String address;
|
|
@ExcelProperty(value = "人员类型(户籍人口/留守人员/外地人员/境外人员/流动人口/常住人口/暂住人口)", index = 28)
|
private String personType;
|
|
@ExcelProperty(value = "国家", index = 29)
|
private String country;
|
|
@ExcelProperty(value = "离开日期(境外人员填写)", index = 30)
|
private String StringOfDeparture;
|
|
@ExcelProperty(value = "人员状态(正常/失联/出国)", index = 31)
|
private String personStatus;
|
|
@ExcelProperty(value = "月收入情况", index = 32)
|
private String monthlyIncome;
|
|
@ExcelProperty(value = "家庭情况", index = 33)
|
private String familyStatus;
|
|
@ExcelProperty(value = "来华目的(境外人员填写)", index = 34)
|
private String goalInChina;
|
|
@ExcelProperty(value = "抵达日期(境外人员填写)", index = 35)
|
private String StringOfArrival;
|
|
@ExcelProperty(value = "备注", index = 36)
|
private String remark;
|
|
@ExcelProperty(value = "证件照(人面像)照片", index = 37)
|
private String idCardPositive;
|
|
@ExcelProperty(value = "证件照(国徽面)照片", index = 38)
|
private String idCardBack;
|
|
@ExcelProperty(value = "户口本照片", index = 39)
|
private String houseHold;
|
|
@ExcelProperty(value = "是否死亡(是/否)", index = 40)
|
private String death;
|
|
@ExcelProperty(value = "错误信息", index = 41)
|
private String mistake;
|
}
|