| | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @Data |
| | | @EncryptDecryptClass |
| | | public class ComMngPopulationCultExcelVO implements Serializable { |
| | | |
| | | @ExcelProperty(value = "序号", index = 0) |
| | | private String serialNumber; |
| | | |
| | | @ExcelProperty(value = "姓名", index = 1) |
| | | private String name; |
| | |
| | | @ExcelProperty(value = "户口所在地", index = 18) |
| | | private String censusRegister; |
| | | |
| | | @ExcelProperty(value = "邪教名称", index = 19) |
| | | @ExcelProperty(value = "邪教名称(涉邪组织)", index = 19) |
| | | private String cultName; |
| | | |
| | | @ExcelProperty(value = "基本情况", index = 20) |
| | | @ExcelProperty(value = "基本情况(参加邪教的活动情况)", index = 20) |
| | | private String basicSituation; |
| | | |
| | | @ExcelProperty(value = "备注", index = 21) |
| | | @ExcelProperty(value = "参加邪教时间", index = 21) |
| | | private Date joinCultDate; |
| | | |
| | | @ExcelProperty(value = "是否对外宣传(1.是 0.否)", index = 22) |
| | | private Integer isExternalPublicity; |
| | | |
| | | @ExcelProperty(value = "备注", index = 23) |
| | | private String remark; |
| | | |
| | | |
| | |
| | | private List<String> userTagStr = Lists.newArrayList(); |
| | | |
| | | private Long houseId; |
| | | |
| | | /** |
| | | * 出生年月日 |
| | | */ |
| | | private String address; |
| | | } |