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
28
29
30
31
32
33
34
35
| package com.ld.igds.phone35.dto;
|
| import lombok.Data;
|
| /**
| * 登录成功后返回信息封装
| * @author chen
| */
| @Data
| public class Phone35UserDto {
|
| private String tokenAuth;
|
| private String username;
|
| private String cname;
|
| private String companyId;
|
| private String deptId;
| private String deptName;
|
| private String mobile;
|
| private String support;
|
| private String email;
|
| private String phone;
|
| private String website;
|
| private String address;
|
| }
|
|