feige
2024-08-22 5e2ebcceae4bc34b46370f2c10110cd72e7f4fba
zhang-content/src/main/java/com/ruoyi/domain/ZMarry.java
@@ -4,6 +4,7 @@
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;
@@ -43,25 +44,33 @@
     * 结婚时间
     */
    @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;