| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import lombok.Data; |
| | | import lombok.ToString; |
| | | |
| | |
| | | * 结婚时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | // @Excel(name = "结婚时间", dateFormat = "yyyy-MM-dd") |
| | | private Date marryTime; |
| | | |
| | | /** |
| | | * 生育情况,0:未生育、1:在孕、2:已生育 |
| | | */ |
| | | // @Excel(name = "生育情况",readConverterExp = "0=未生育,1=在孕,2=已生育") |
| | | private Integer bearStatus; |
| | | |
| | | // @Excel(name = "是否领取计划生育服务手册",readConverterExp = "0=否,1=是") |
| | | private Integer handbookStatus; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | // @Excel(name = "领取计划生育服务手册时间", dateFormat = "yyyy-MM-dd") |
| | | private Date handbookTime; |
| | | |
| | | // @Excel(name = "是否领取独生子女证", readConverterExp = "0=否,1=是") |
| | | private Integer oneBorn; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | // @Excel(name = "领取独生子女证时间", dateFormat = "yyyy-MM-dd") |
| | | private Date oneBornTime; |
| | | |
| | | // @Excel(name = "需声明的情况") |
| | | private String content; |
| | | |
| | | // @Excel(name = "备注") |
| | | private String remark; |
| | | |
| | | private Integer deleteStatus; |