zqy
2024-11-19 1c3eaff1c9b0f7b021ac0750a65b8bd1f880ec54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package com.ruoyi.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-08-07 21:20
 * @Version 1.0.0
 **/
@Data
public class MarrySelf implements Serializable {
    private static final long serialVersionUID = 1L;
 
    private Long id;
 
    @Excel(name = "姓名")
    private String name;
 
    @Excel(name = "性别")
    private String sex;
 
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @Excel(name = "生日", dateFormat = "yyyy-MM-dd")
    private Date birthday;
 
    @Excel(name = "民族")
    private String nation;
 
    @Excel(name = "身份证")
    private String idNo;
 
    @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;
 
    @Excel(name = "户籍地址")
    private String address;
 
    /**
     * 生育情况,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 notion;
 
    //    @Excel(name = "备注")
    private String remark;
 
    private Long uid;
 
    @Excel(name = "姓名")
    private String spouseName;
 
    @Excel(name = "性别")
    private String spouseSex;
 
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @Excel(name = "生日", dateFormat = "yyyy-MM-dd")
    private Date spouseBirthday;
 
    @Excel(name = "民族")
    private String spouseNation;
 
    @Excel(name = "身份证")
    private String spouseIdNo;
 
    @Excel(name = "手机号码")
    private String spousePhone;
 
    @Excel(name = "婚姻状况",readConverterExp = "0=未婚,1=初婚,2=离婚,3=再婚")
    private Integer spouseMarryStatus;
 
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @Excel(name = "结婚时间", dateFormat = "yyyy-MM-dd")
    private Date spouseMarryTime;
 
    @Excel(name = "户籍地址")
    private String spouseAddress;
 
}