whywhyo
2023-10-19 2a7b6b4dff71852bce0166465ab8c8698e6f5894
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Author Jinquan_Ou
 * @Description
 * @Date 2023-07-15 11:05
 * @Version 1.0.0
 **/
@Data
public class ZAuthority implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 用户id
     */
    private Long uid;
 
    /**
     * 家庭id
     */
    private Long fid;
 
    /**
     * 权限码
     */
    private Long authority;
 
}