shishuaikang
2023-11-14 6358220b222fa74bd5991b77efe33120624e38e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.thhy.staff.modules.biz.group.entity;
 
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
@Data
@Accessors(chain = true)
public class GroupUserDto implements Serializable {
 
    private String groupId;
 
    private String userIds;
 
    private String realName;
 
}