提交 | 用户 | 时间
|
820397
|
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 |
|
e7305d
|
28 |
export type Apps = { |
H |
29 |
id: number |
|
30 |
appCode: string |
|
31 |
appName: string |
|
32 |
appDomain: string |
|
33 |
apiDomain: string |
|
34 |
appKey: string |
|
35 |
appSecret: string |
|
36 |
appGroup: string |
|
37 |
loadType: string |
|
38 |
icon: string |
|
39 |
orderNum: number |
|
40 |
status: number |
|
41 |
devId: string |
|
42 |
devName: string |
|
43 |
remark: string |
|
44 |
createTime: Date |
|
45 |
appType: number |
|
46 |
appMenuId: number |
820397
|
47 |
} |