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
| export interface RepairRecordVO {
| /**
| *
| */
| id: number | string;
|
| /**
| * 报修单id
| */
| reqId: number | string;
|
| /**
| * 维修单id
| */
| resId: number | string;
|
| /**
| * 处理时间
| */
| handleTime: string;
|
| /**
| * 操作用户
| */
| operaUser: number;
|
| /**
| * 操作(字典)
| */
| opera: string;
|
| /**
| * 操作结果
| */
| operaResult: string;
|
| /**
| * 备注
| */
| remark: string;
| }
|
|