车间能级提升-智能设备管理系统
朱桂飞
2025-02-14 fc76b6c4a7ccd2d875b0fb998a868fe4bea188f7
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
129
130
131
132
133
export interface EquVO {
  /**
   *
   */
  equId: number | string;
 
  /**
   * 资产编号
   */
  assetNo: string;
  /**
   * 设备编码
   */
  equCode: string;
 
  /**
   * 设备名称
 
   */
  equName: string;
  /**
   * 设备类型
 
   */
  equTypeName: string;
 
  /**
   * 型号
   */
  modelNo: string;
 
  /**
   * 制造商
   */
  madeIn: string;
 
  /**
   * 额度功率
   */
  ratedPower: number;
 
  /**
   * 铭牌信息
   */
  plateInfo: string;
 
  /**
   * 采购日期
   */
  purchaseDate: string;
 
  /**
   * 状态
   */
  status: string;
 
  /**
   * 所在场所
   */
  location: string;
 
  /**
   * 使用部门(关联id)
   */
  deptUsed: number;
  /**
   * 使用部门名称
   */
  deptName: number;
 
  /**
   * 责任人(关联id)
   */
  respPerson: number;
  /**
   * 责任人
   */
  respPersonName: string;
 
  /**
   * 联系电话
   */
  contactPhone: string;
 
  /**
   * 正式使用日期
   */
  deployDate: string;
 
  /**
   * 开始试用日期
   */
  trialDate: string;
 
  /**
   * 计划验收日期
   */
  planAcceptDate: string;
 
  /**
   * 实际验收日期
   */
  actualAcceptDate: string;
 
  /**
   * 导入状态(字典)
   */
  importStatus: number;
 
  /**
   * 盘点标志
   */
  inventoryFlag: number;
 
  /**
   * 上次盘点日期
   */
  inventoryDate: string;
 
  /**
   * 使用年限
   */
  serviceLife: number;
}
/**
 * @description: 设备导入
 * @param updateSupport 是否覆盖数据
 * @param file excel文件
 */
export interface EquImportParam {
  updateSupport: boolean;
  file: Blob | File;
}