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;
|
| }
|
|