提交 | 用户 | 时间
|
23db5e
|
1 |
export type WorkplaceTotal = { |
H |
2 |
project: number |
|
3 |
access: number |
|
4 |
todo: number |
|
5 |
} |
|
6 |
|
|
7 |
export type Project = { |
|
8 |
name: string |
|
9 |
icon: string |
|
10 |
message: string |
|
11 |
personal: string |
|
12 |
time: Date | number | string |
|
13 |
} |
|
14 |
|
|
15 |
export type Notice = { |
|
16 |
title: string |
|
17 |
type: string |
|
18 |
keys: string[] |
|
19 |
date: Date | number | string |
|
20 |
} |
|
21 |
|
|
22 |
export type Shortcut = { |
|
23 |
name: string |
|
24 |
icon: string |
|
25 |
url: string |
|
26 |
} |
|
27 |
|
|
28 |
export type RadarData = { |
|
29 |
personal: number |
|
30 |
team: number |
|
31 |
max: number |
|
32 |
name: string |
|
33 |
} |
|
34 |
export type AnalysisTotalTypes = { |
|
35 |
users: number |
|
36 |
messages: number |
|
37 |
moneys: number |
|
38 |
shoppings: number |
|
39 |
} |
|
40 |
|
|
41 |
export type UserAccessSource = { |
|
42 |
value: number |
|
43 |
name: string |
|
44 |
} |
|
45 |
|
|
46 |
export type WeeklyUserActivity = { |
|
47 |
value: number |
|
48 |
name: string |
|
49 |
} |
|
50 |
|
|
51 |
export type MonthlySales = { |
|
52 |
name: string |
|
53 |
estimate: number |
|
54 |
actual: number |
|
55 |
} |
|
56 |
|
|
57 |
export type Apps = { |
|
58 |
id: number |
|
59 |
appCode: string |
|
60 |
appName: string |
|
61 |
appDomain: string |
|
62 |
apiDomain: string |
|
63 |
appKey: string |
|
64 |
appSecret: string |
|
65 |
appGroup: string |
|
66 |
loadType: string |
|
67 |
icon: string |
|
68 |
orderNum: number |
|
69 |
status: number |
|
70 |
devId: string |
|
71 |
devName: string |
|
72 |
remark: string |
|
73 |
createTime: Date |
|
74 |
} |