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
38
39
40
41
42
| 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;
|
| /**
| * 分享个其他家族输入名字
| */
| private String nickName;
|
| /**
| * 分享给的用户的家族
| */
| private Integer clanId;
| }
|
|