user-list.ts
1.08 KB
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
// 列表
export interface IArticleData {
account?: string
avatar?: string
createTime?: string
createUser?: number
email?: string
id?: number
lastLoginTime?: string
mobile?: string
name?: string
orgId?: number
orgName?: string
password?: string
passwordErrorLastTime?: string
passwordErrorNum?: number
passwordExpireTime?: string
roleNames?: any[]
roles?: any[]
sex?: Sex
stationId?: number
stationName?: string
status?: boolean
updateTime?: string
updateUser?: number
workDescribe?: string
}
// 用户翻页
export interface IManageUserPageListEntity {
total?: string
size?: string
pages?: string
current?: string
records?: IArticleData[]
}
export interface Sex {
code: string
desc: string
}
// 表单
export interface IUserFreezeRequest {
account?: string
avatar?: string
email?: string
id?: number
mobile?: string
name?: string
orgId?: string
password?: string
roles?:[]
sex:iUsex
stationId?: string
status?: boolean
workDescribe?: string
}
// 性别
export interface iUsex {
code?: string
desc?: string
}