zqy
2024-07-15 c8762b3e0ba483d9205893b8f9eb5f244a653943
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
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;
}