zqy
2025-06-22 ae536b434f6eae2a64b4ce30cd8def726ff05a0a
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
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_share_data")
public class ZfShareData {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 分享者的id
     */
    private Integer userId;
 
    /**
     * 被分享者的id
     */
    private Integer sharedId;
 
    /**
     * 主账户
     */
    private Integer masterAccount;
 
 
}