feige
2024-09-10 edc0b4ee1fb8b292635667379387cc0e76e5af01
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
 
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
@Data
@TableName("zf_ancestor")
public class ZfAncestor {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
 
    /**
     * 家族id
     */
    private Integer clanId;
 
 
    /**
     * 祖先名称
     */
    private String name;
 
    /**
     * 祖先sysId
     */
    private Long sysId;
 
    /**
     * 祖先性别
     */
    private Integer sex;
 
    /**
     * 祖先类型
     */
    private Integer roleId;
 
    /**
     * 状态
     */
    private Integer status;
 
//    /**
//     * 是否本家
//     */
//    private Integer isMyFamily;
//
    /**
     *配偶id
     */
    private Integer spouseId;
 
    /**
     *密码
     */
    private String password;
 
}