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
| package com.thhy.secure.modules.biz.train.entity.dto;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.Date;
| import java.util.List;
|
| @Data
| public class SecureGroupUserDto implements Serializable {
|
| //用户名称
| private String realName;
|
| private String userId;
| //联系电话
| private String phone;
| //岗位职责
| private String posName;
| //分组名称
| private String groupName;
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
| private Date createTime;
|
| }
|
|