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
36
37
38
| package com.fzzy.igds.app.v1.dto;
|
| import lombok.Data;
|
| /**
| * @Author: YYC
| * @Description: 登录成功后返回信息封装
| * @DateTime: 2026-1-13 11:19
| **/
| @Data
| public class PUserDto {
|
| 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;
|
| private String type;
|
| }
|
|