| | |
| | | @Excel(name = "个人户籍地址",headerBackgroundColor = IndexedColors.YELLOW) |
| | | private String address; |
| | | // @ExcelProperty({"个人信息","工作地址"}) |
| | | @Excel(name = "个人工作地址",headerBackgroundColor = IndexedColors.YELLOW) |
| | | private String workAddress; |
| | | @Excel(name = "个人身份证",headerBackgroundColor = IndexedColors.YELLOW) |
| | | private String idNo; |
| | | // @ExcelProperty(value = {"个人信息","婚姻状况"},converter = BearStatusConverter.class) |
| | | @Excel(name = "个人婚姻状况", readConverterExp = "0=未婚,1=初婚,2=离婚,3=再婚",headerBackgroundColor = IndexedColors.YELLOW) |
| | | private Integer marryStatus; |
| | |
| | | @Excel(name = "配偶户籍地址",headerBackgroundColor = IndexedColors.GREEN) |
| | | private String spouseAddress; |
| | | // @ExcelProperty(value = {"配偶信息","工作地址"}) |
| | | @Excel(name = "配偶工作地址",headerBackgroundColor = IndexedColors.GREEN) |
| | | private String spouseWorkAddress; |
| | | @Excel(name = "配偶身份证",headerBackgroundColor = IndexedColors.GREEN) |
| | | private String spouseIdNo; |
| | | // @ExcelProperty(value = {"配偶信息","婚姻状况"},converter = BearStatusConverter.class) |
| | | @Excel(name = "配偶婚姻状况", readConverterExp = "0=未婚,1=初婚,2=离婚,3=再婚",headerBackgroundColor = IndexedColors.GREEN) |
| | | private Integer spouseMarryStatus; |