zqy
2024-05-20 defde121e8da3baa0e9ace575d6c2cf42a54e933
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author ojq
 * @since 2023-03-14
 */
@TableName("z_child")
public class ZChild implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 本人id
     */
    private Integer userId;
 
    /**
     * 配偶id
     */
    private Integer spouseId;
 
    /**
     * 孩子姓名
     */
    private String childName;
 
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public Integer getSpouseId() {
        return spouseId;
    }
 
    public void setSpouseId(Integer spouseId) {
        this.spouseId = spouseId;
    }
 
    public String getChildName() {
        return childName;
    }
 
    public void setChildName(String childName) {
        this.childName = childName;
    }
 
    @Override
    public String toString() {
        return "ZChild{" +
        "id=" + id +
        ", userId=" + userId +
        ", spouseId=" + spouseId +
        ", childName=" + childName +
        "}";
    }
}