6 changed files with 102 additions and 0 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: esua-epdc |
||||
|
* @description: 帮扶小组搜索 |
||||
|
* @author: wangtong |
||||
|
* @create: 2021-07-19 14:20 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class GroupUserDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 254494600958965032L; |
||||
|
|
||||
|
private String username; |
||||
|
|
||||
|
private String realname; |
||||
|
|
||||
|
private String mobile; |
||||
|
|
||||
|
private String email; |
||||
|
|
||||
|
private String[] userIdList; |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue