zqy
2024-08-05 5be62132d4654e16be0bcc7c1ab1304a307ada5c
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
package com.ruoyi.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class ShareMore implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 用户id
     */
    private Long userId;
 
    /**
     * 分享的用户id
     */
    private Long[] shareIds;
 
    /**
     * 分享的内容
     */
    private Long[] shareContents;
 
    /**
     * 分享的模块
     */
    private Long sysMenuId;
}