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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
| export class LoginInfo {
| /**
| * 用户ID
| */
| user_Id: number;
| /**
| * 角色ID
| */
| role_Id: number;
| /**
| * 角色
| */
| roleName: string;
| /**
| * 部门ID
| */
| dept_Id: number;
| /**
| * 部门
| */
| deptName: string;
| roleData_Id: number;
| /**
| * 用户名
| */
| userName: string;
| /**
| * 用户真实名
| */
| userTrueName: string;
| userPwd: string;
|
| /**
| * 用户类型:user(后台用户), consignor(商家)
| */
| userType: string;
|
| /**
| * 商家ID
| */
| consignor_Id: number;
| /**
| * 商家编号
| */
| consignorCode: string;
| /**
| * 商家名称
| */
| consignorName: string;
| /**
| * 商家类型
| */
| consignorType: string;
| /**
| * 用户登录来源IP
| */
| ip: string;
|
| /**
| * 是否超级管理员
| */
| isAdministrator: boolean;
|
| /**
| * 验证码
| */
| validateCode: string;
|
| /**
| * 用户唯一标示
| */
| guid: string;
|
| /**
| * 授权token
| */
| accessToken: string;
|
| /**
| * 手机号
| */
| mobile: string;
|
| /**
| * 用户产品ID
| */
| userProduct_Id: number;
|
| /**
| * 客户账套编号
| */
| userProductCode: string;
|
| /**
| * 账套别名
| */
| userProductAlias: string;
|
| /**
| * 平台用户ID
| */
| platUser_Id: number;
| /**
| * 平台用户编号
| */
| platUserCode: string;
| /**
| * 平台用户名称
| */
| platUserName: string;
| /**
| * 公司名称
| */
| platCorpName: string;
|
| /**
| * 登录语言,目前默认为CN
| */
| lang: string;
| /**
| * 中文系统
| */
| isChinese: boolean;
| /**
| * 英文系统
| */
| isEnglish: boolean;
| }
|
|