| | |
| | | |
| | | import cn.idev.excel.annotation.ExcelProperty; |
| | | import com.panzhihua.sangeshenbian.annotation.FastExcel; |
| | | import com.panzhihua.sangeshenbian.annotation.TargetEnum; |
| | | import com.panzhihua.sangeshenbian.conveter.EConverter; |
| | | import com.panzhihua.sangeshenbian.enums.FreezeStatusEnum; |
| | | import com.panzhihua.sangeshenbian.enums.GenderEnum; |
| | |
| | | private String name; |
| | | |
| | | @ExcelProperty(value = {"性别"}, index = 1,converter = EConverter.class) |
| | | @FastExcel(type = GenderEnum.class) |
| | | @TargetEnum(type = GenderEnum.class) |
| | | private Integer gender; |
| | | |
| | | @ExcelProperty(value = {"所在社区"}, index = 2) |
| | |
| | | private String partyOrganization; |
| | | |
| | | @ExcelProperty(value = {"审核状态"}, index = 5,converter = EConverter.class) |
| | | @FastExcel(type = FreezeStatusEnum.class) |
| | | @TargetEnum(type = FreezeStatusEnum.class) |
| | | private Integer freezeStatus; |
| | | |
| | | } |