zqy
2024-07-21 50e278e21fb6086235a8557e4305add62349b197
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
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_clan")
public class ZfClan {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer clanId;
 
    /**
     * 家族名称
     */
    private String clanName;
 
    /**
     * 父亲id
     */
    private Integer dadId;
 
    /**
     * 母亲id
     */
    private Integer momId;
 
    /**
     * 管理员id
     */
    private Integer adminId;
}