zqy
2024-07-25 c8a96c5e4ce5d5013a5ec508e2422f40ecdc311e
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
 
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_manage")
public class ZfClanManage {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
 
    private Integer clanId;
 
    /**
     * 成员sysUser_id
     */
    private Integer memberId;
 
    /**
     * 成员角色类型role_id
     */
    private Integer roleId;
 
}