| | |
| | | public class MarryUser implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private String id; |
| | | private Long myId; |
| | | private Long id; |
| | | |
| | | @Excel(name = "姓名") |
| | | // @ExcelProperty({"姓名"}) |
| | | @Excel(name = "姓名") |
| | | private String name; |
| | | |
| | | @Excel(name = "性别") |
| | | private String sex; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Excel(name = "生日", dateFormat = "yyyy-MM-dd") |
| | | // @ExcelProperty({"生日"}) |
| | | // @DateTimeFormat("yyyy-MM-dd") |
| | | private Date birthday; |
| | | |
| | | @Excel(name = "户籍地址") |
| | | // @ExcelProperty({"户籍地址"}) |
| | | private String address; |
| | | |
| | | @Excel(name = "工作地址") |
| | | // @ExcelProperty({"工作地址"}) |
| | | private String workAddress; |
| | | |
| | | @Excel(name = "婚姻状况",readConverterExp = "0=未婚,1=初婚,2=离婚,3=再婚") |
| | | // @ExcelProperty(value = {"婚姻状况"},converter = BearStatusConverter.class) |
| | | private Integer marryStatus; |
| | | |
| | | @Excel(name = "性别",readConverterExp = "0=女,1=男") |
| | | // @ExcelProperty({"性别"}) |
| | | private Integer sex; |
| | | |
| | | @Excel(name = "民族") |
| | | // @ExcelProperty({"民族"}) |
| | | @Excel(name = "民族") |
| | | private String nation; |
| | | |
| | | @Excel(name = "手机号码") |
| | | // @ExcelProperty({"手机号码"}) |
| | | @Excel(name = "身份证") |
| | | private String idNo; |
| | | |
| | | @Excel(name = "户籍地址") |
| | | private String address; |
| | | |
| | | @Excel(name = "手机号码") |
| | | private String phone; |
| | | |
| | | @Excel(name = "婚姻状况",readConverterExp = "0=未婚,1=初婚,2=离婚,3=再婚") |
| | | private Integer marryStatus; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @Excel(name = "结婚时间", dateFormat = "yyyy-MM-dd") |
| | | private Date marryTime; |
| | | |
| | | private Long uid; |
| | | |
| | | } |