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
| export interface MaintOrditmVO {
| /**
| *
| */
| id: number | string;
|
| /**
| * 工单id
| */
| orderId: number | string;
|
| /**
| * 设备id
| */
| equId: number | string;
|
| /**
| * 保养项目名称
| */
| itmName: string;
|
| /**
| * 保养项目操作标准
| */
| itmAction: string;
|
| /**
| * 保养操作用户
| */
| itmUser: number;
|
| /**
| * 保养时间
| */
| itmTime: string;
|
| /**
| * 完成状态(字典)
| */
| status: string;
|
| /**
| * 备注
| */
| remark: string;
| }
|
|