沙钢智慧能源系统前端代码
houzhongjian
2024-10-09 314507f8ddadd9c66e98d260c3b2a5dad1a04015
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
export type WorkplaceTotal = {
  project: number
  access: number
  todo: number
}
 
export type Project = {
  name: string
  icon: string
  message: string
  personal: string
  time: Date | number | string
}
 
export type Notice = {
  title: string
  type: string
  keys: string[]
  date: Date | number | string
}
 
export type Shortcut = {
  name: string
  icon: string
  url: string
}
 
export type RadarData = {
  personal: number
  team: number
  max: number
  name: string
}
export type AnalysisTotalTypes = {
  users: number
  messages: number
  moneys: number
  shoppings: number
}
 
export type UserAccessSource = {
  value: number
  name: string
}
 
export type WeeklyUserActivity = {
  value: number
  name: string
}
 
export type MonthlySales = {
  name: string
  estimate: number
  actual: number
}
 
export type Apps = {
  id: number
  appCode: string
  appName: string
  appDomain: string
  apiDomain: string
  appKey: string
  appSecret: string
  appGroup: string
  loadType: string
  icon: string
  orderNum: number
  status: number
  devId: string
  devName: string
  remark: string
  createTime: Date
}