@gizone/rrs-client 4.1.2-alpha.178 → 4.1.2-alpha.179

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -858,6 +858,7 @@ models/switch-pak-body.ts
858
858
  models/switch-park-v2-dto.ts
859
859
  models/sync-device-unit-vo.ts
860
860
  models/sync-equipment-status-vo.ts
861
+ models/sync-equipment-vo-equipment.ts
861
862
  models/sync-equipment-vo.ts
862
863
  models/sys-config.ts
863
864
  models/sys-dept-drop-down-box-list-dto.ts
@@ -10,81 +10,27 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 设备信息
13
+ * 设备详情
14
14
  * @export
15
15
  * @interface Equipment
16
16
  */
17
17
  export interface Equipment {
18
18
  /**
19
- * 设备编码
20
- * @type {string}
21
- * @memberof Equipment
22
- */
23
- 'equipmentCode': string;
24
- /**
25
- * 设备名称
26
- * @type {string}
27
- * @memberof Equipment
28
- */
29
- 'equipmentName': string;
30
- /**
31
- * 设备系统
32
- * @type {string}
33
- * @memberof Equipment
34
- */
35
- 'equipmentSystem'?: string;
36
- /**
37
- * 设备状态 1:再用,2:待维修,3:待报废,4:已报废,5:已处置,6:已冻结
19
+ * 设备id
38
20
  * @type {number}
39
21
  * @memberof Equipment
40
22
  */
41
- 'equipmentStatus': number;
42
- /**
43
- * 维保类型 FACILITY,TOTAL_PACKAGE,THIRD_PARTY
44
- * @type {string}
45
- * @memberof Equipment
46
- */
47
- 'maintenanceType'?: string;
48
- /**
49
- * 维保公司
50
- * @type {string}
51
- * @memberof Equipment
52
- */
53
- 'maintenanceCompany'?: string;
54
- /**
55
- * 维保等级
56
- * @type {string}
57
- * @memberof Equipment
58
- */
59
- 'maintenanceLevel'?: string;
60
- /**
61
- * 维保联系人
62
- * @type {string}
63
- * @memberof Equipment
64
- */
65
- 'maintenanceContact'?: string;
23
+ 'equipmentId'?: number;
66
24
  /**
67
- * 设备手册
68
- * @type {Array<string>}
69
- * @memberof Equipment
70
- */
71
- 'equipmentManuals'?: Array<string>;
72
- /**
73
- * 出厂时间(格式:yyyy-MM-dd HH:mm:ss)
74
- * @type {string}
75
- * @memberof Equipment
76
- */
77
- 'deliveryTime'?: string;
78
- /**
79
- * 安装时间(格式:yyyy-MM-dd HH:mm:ss)
25
+ * 设备名称
80
26
  * @type {string}
81
27
  * @memberof Equipment
82
28
  */
83
- 'installTime'?: string;
29
+ 'equipmentName'?: string;
84
30
  /**
85
- * 质保到期时间(格式:yyyy-MM-dd HH:mm:ss)
86
- * @type {string}
31
+ * 关联设备
32
+ * @type {Array<number>}
87
33
  * @memberof Equipment
88
34
  */
89
- 'warrantyTime'?: string;
35
+ 'relatedEquipmentIds'?: Array<number>;
90
36
  }
@@ -35,6 +35,12 @@ export interface GetUserWx200Response {
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'headerNames'?: Array<string>;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof GetUserWx200Response
42
+ */
43
+ 'bufferSize'?: number;
38
44
  /**
39
45
  *
40
46
  * @type {string}
@@ -59,12 +65,6 @@ export interface GetUserWx200Response {
59
65
  * @memberof GetUserWx200Response
60
66
  */
61
67
  'locale'?: GetUserWx200ResponseLocale;
62
- /**
63
- *
64
- * @type {number}
65
- * @memberof GetUserWx200Response
66
- */
67
- 'bufferSize'?: number;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -794,6 +794,7 @@ export * from './switch-park-v2-dto';
794
794
  export * from './sync-device-unit-vo';
795
795
  export * from './sync-equipment-status-vo';
796
796
  export * from './sync-equipment-vo';
797
+ export * from './sync-equipment-vo-equipment';
797
798
  export * from './sys-config';
798
799
  export * from './sys-dept';
799
800
  export * from './sys-dept-drop-down-box-list-dto';
@@ -794,6 +794,7 @@ export * from './switch-park-v2-dto';
794
794
  export * from './sync-device-unit-vo';
795
795
  export * from './sync-equipment-status-vo';
796
796
  export * from './sync-equipment-vo';
797
+ export * from './sync-equipment-vo-equipment';
797
798
  export * from './sys-config';
798
799
  export * from './sys-dept';
799
800
  export * from './sys-dept-drop-down-box-list-dto';
@@ -0,0 +1,90 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 设备信息
14
+ * @export
15
+ * @interface SyncEquipmentVoEquipment
16
+ */
17
+ export interface SyncEquipmentVoEquipment {
18
+ /**
19
+ * 设备编码
20
+ * @type {string}
21
+ * @memberof SyncEquipmentVoEquipment
22
+ */
23
+ 'equipmentCode': string;
24
+ /**
25
+ * 设备名称
26
+ * @type {string}
27
+ * @memberof SyncEquipmentVoEquipment
28
+ */
29
+ 'equipmentName': string;
30
+ /**
31
+ * 设备系统
32
+ * @type {string}
33
+ * @memberof SyncEquipmentVoEquipment
34
+ */
35
+ 'equipmentSystem'?: string;
36
+ /**
37
+ * 设备状态 1:再用,2:待维修,3:待报废,4:已报废,5:已处置,6:已冻结
38
+ * @type {number}
39
+ * @memberof SyncEquipmentVoEquipment
40
+ */
41
+ 'equipmentStatus': number;
42
+ /**
43
+ * 维保类型 FACILITY,TOTAL_PACKAGE,THIRD_PARTY
44
+ * @type {string}
45
+ * @memberof SyncEquipmentVoEquipment
46
+ */
47
+ 'maintenanceType'?: string;
48
+ /**
49
+ * 维保公司
50
+ * @type {string}
51
+ * @memberof SyncEquipmentVoEquipment
52
+ */
53
+ 'maintenanceCompany'?: string;
54
+ /**
55
+ * 维保等级
56
+ * @type {string}
57
+ * @memberof SyncEquipmentVoEquipment
58
+ */
59
+ 'maintenanceLevel'?: string;
60
+ /**
61
+ * 维保联系人
62
+ * @type {string}
63
+ * @memberof SyncEquipmentVoEquipment
64
+ */
65
+ 'maintenanceContact'?: string;
66
+ /**
67
+ * 设备手册
68
+ * @type {Array<string>}
69
+ * @memberof SyncEquipmentVoEquipment
70
+ */
71
+ 'equipmentManuals'?: Array<string>;
72
+ /**
73
+ * 出厂时间(格式:yyyy-MM-dd HH:mm:ss)
74
+ * @type {string}
75
+ * @memberof SyncEquipmentVoEquipment
76
+ */
77
+ 'deliveryTime'?: string;
78
+ /**
79
+ * 安装时间(格式:yyyy-MM-dd HH:mm:ss)
80
+ * @type {string}
81
+ * @memberof SyncEquipmentVoEquipment
82
+ */
83
+ 'installTime'?: string;
84
+ /**
85
+ * 质保到期时间(格式:yyyy-MM-dd HH:mm:ss)
86
+ * @type {string}
87
+ * @memberof SyncEquipmentVoEquipment
88
+ */
89
+ 'warrantyTime'?: string;
90
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { Equipment } from './equipment';
12
+ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
13
13
  /**
14
14
  * 同步设备参数
15
15
  * @export
@@ -30,8 +30,8 @@ export interface SyncEquipmentVo {
30
30
  'source': string;
31
31
  /**
32
32
  * 设备列表
33
- * @type {Array<Equipment>}
33
+ * @type {Array<SyncEquipmentVoEquipment>}
34
34
  * @memberof SyncEquipmentVo
35
35
  */
36
- 'equipments'?: Array<Equipment>;
36
+ 'equipments'?: Array<SyncEquipmentVoEquipment>;
37
37
  }
@@ -10,81 +10,27 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 设备信息
13
+ * 设备详情
14
14
  * @export
15
15
  * @interface Equipment
16
16
  */
17
17
  export interface Equipment {
18
18
  /**
19
- * 设备编码
20
- * @type {string}
21
- * @memberof Equipment
22
- */
23
- 'equipmentCode': string;
24
- /**
25
- * 设备名称
26
- * @type {string}
27
- * @memberof Equipment
28
- */
29
- 'equipmentName': string;
30
- /**
31
- * 设备系统
32
- * @type {string}
33
- * @memberof Equipment
34
- */
35
- 'equipmentSystem'?: string;
36
- /**
37
- * 设备状态 1:再用,2:待维修,3:待报废,4:已报废,5:已处置,6:已冻结
19
+ * 设备id
38
20
  * @type {number}
39
21
  * @memberof Equipment
40
22
  */
41
- 'equipmentStatus': number;
42
- /**
43
- * 维保类型 FACILITY,TOTAL_PACKAGE,THIRD_PARTY
44
- * @type {string}
45
- * @memberof Equipment
46
- */
47
- 'maintenanceType'?: string;
48
- /**
49
- * 维保公司
50
- * @type {string}
51
- * @memberof Equipment
52
- */
53
- 'maintenanceCompany'?: string;
54
- /**
55
- * 维保等级
56
- * @type {string}
57
- * @memberof Equipment
58
- */
59
- 'maintenanceLevel'?: string;
60
- /**
61
- * 维保联系人
62
- * @type {string}
63
- * @memberof Equipment
64
- */
65
- 'maintenanceContact'?: string;
23
+ 'equipmentId'?: number;
66
24
  /**
67
- * 设备手册
68
- * @type {Array<string>}
69
- * @memberof Equipment
70
- */
71
- 'equipmentManuals'?: Array<string>;
72
- /**
73
- * 出厂时间(格式:yyyy-MM-dd HH:mm:ss)
74
- * @type {string}
75
- * @memberof Equipment
76
- */
77
- 'deliveryTime'?: string;
78
- /**
79
- * 安装时间(格式:yyyy-MM-dd HH:mm:ss)
25
+ * 设备名称
80
26
  * @type {string}
81
27
  * @memberof Equipment
82
28
  */
83
- 'installTime'?: string;
29
+ 'equipmentName'?: string;
84
30
  /**
85
- * 质保到期时间(格式:yyyy-MM-dd HH:mm:ss)
86
- * @type {string}
31
+ * 关联设备
32
+ * @type {Array<number>}
87
33
  * @memberof Equipment
88
34
  */
89
- 'warrantyTime'?: string;
35
+ 'relatedEquipmentIds'?: Array<number>;
90
36
  }
@@ -35,6 +35,12 @@ export interface GetUserWx200Response {
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'headerNames'?: Array<string>;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof GetUserWx200Response
42
+ */
43
+ 'bufferSize'?: number;
38
44
  /**
39
45
  *
40
46
  * @type {string}
@@ -59,12 +65,6 @@ export interface GetUserWx200Response {
59
65
  * @memberof GetUserWx200Response
60
66
  */
61
67
  'locale'?: GetUserWx200ResponseLocale;
62
- /**
63
- *
64
- * @type {number}
65
- * @memberof GetUserWx200Response
66
- */
67
- 'bufferSize'?: number;
68
68
  /**
69
69
  *
70
70
  * @type {string}
@@ -794,6 +794,7 @@ export * from './switch-park-v2-dto';
794
794
  export * from './sync-device-unit-vo';
795
795
  export * from './sync-equipment-status-vo';
796
796
  export * from './sync-equipment-vo';
797
+ export * from './sync-equipment-vo-equipment';
797
798
  export * from './sys-config';
798
799
  export * from './sys-dept';
799
800
  export * from './sys-dept-drop-down-box-list-dto';
@@ -810,6 +810,7 @@ __exportStar(require("./switch-park-v2-dto"), exports);
810
810
  __exportStar(require("./sync-device-unit-vo"), exports);
811
811
  __exportStar(require("./sync-equipment-status-vo"), exports);
812
812
  __exportStar(require("./sync-equipment-vo"), exports);
813
+ __exportStar(require("./sync-equipment-vo-equipment"), exports);
813
814
  __exportStar(require("./sys-config"), exports);
814
815
  __exportStar(require("./sys-dept"), exports);
815
816
  __exportStar(require("./sys-dept-drop-down-box-list-dto"), exports);
@@ -0,0 +1,90 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 设备信息
14
+ * @export
15
+ * @interface SyncEquipmentVoEquipment
16
+ */
17
+ export interface SyncEquipmentVoEquipment {
18
+ /**
19
+ * 设备编码
20
+ * @type {string}
21
+ * @memberof SyncEquipmentVoEquipment
22
+ */
23
+ 'equipmentCode': string;
24
+ /**
25
+ * 设备名称
26
+ * @type {string}
27
+ * @memberof SyncEquipmentVoEquipment
28
+ */
29
+ 'equipmentName': string;
30
+ /**
31
+ * 设备系统
32
+ * @type {string}
33
+ * @memberof SyncEquipmentVoEquipment
34
+ */
35
+ 'equipmentSystem'?: string;
36
+ /**
37
+ * 设备状态 1:再用,2:待维修,3:待报废,4:已报废,5:已处置,6:已冻结
38
+ * @type {number}
39
+ * @memberof SyncEquipmentVoEquipment
40
+ */
41
+ 'equipmentStatus': number;
42
+ /**
43
+ * 维保类型 FACILITY,TOTAL_PACKAGE,THIRD_PARTY
44
+ * @type {string}
45
+ * @memberof SyncEquipmentVoEquipment
46
+ */
47
+ 'maintenanceType'?: string;
48
+ /**
49
+ * 维保公司
50
+ * @type {string}
51
+ * @memberof SyncEquipmentVoEquipment
52
+ */
53
+ 'maintenanceCompany'?: string;
54
+ /**
55
+ * 维保等级
56
+ * @type {string}
57
+ * @memberof SyncEquipmentVoEquipment
58
+ */
59
+ 'maintenanceLevel'?: string;
60
+ /**
61
+ * 维保联系人
62
+ * @type {string}
63
+ * @memberof SyncEquipmentVoEquipment
64
+ */
65
+ 'maintenanceContact'?: string;
66
+ /**
67
+ * 设备手册
68
+ * @type {Array<string>}
69
+ * @memberof SyncEquipmentVoEquipment
70
+ */
71
+ 'equipmentManuals'?: Array<string>;
72
+ /**
73
+ * 出厂时间(格式:yyyy-MM-dd HH:mm:ss)
74
+ * @type {string}
75
+ * @memberof SyncEquipmentVoEquipment
76
+ */
77
+ 'deliveryTime'?: string;
78
+ /**
79
+ * 安装时间(格式:yyyy-MM-dd HH:mm:ss)
80
+ * @type {string}
81
+ * @memberof SyncEquipmentVoEquipment
82
+ */
83
+ 'installTime'?: string;
84
+ /**
85
+ * 质保到期时间(格式:yyyy-MM-dd HH:mm:ss)
86
+ * @type {string}
87
+ * @memberof SyncEquipmentVoEquipment
88
+ */
89
+ 'warrantyTime'?: string;
90
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { Equipment } from './equipment';
12
+ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
13
13
  /**
14
14
  * 同步设备参数
15
15
  * @export
@@ -30,8 +30,8 @@ export interface SyncEquipmentVo {
30
30
  'source': string;
31
31
  /**
32
32
  * 设备列表
33
- * @type {Array<Equipment>}
33
+ * @type {Array<SyncEquipmentVoEquipment>}
34
34
  * @memberof SyncEquipmentVo
35
35
  */
36
- 'equipments'?: Array<Equipment>;
36
+ 'equipments'?: Array<SyncEquipmentVoEquipment>;
37
37
  }
@@ -15,82 +15,28 @@
15
15
 
16
16
 
17
17
  /**
18
- * 设备信息
18
+ * 设备详情
19
19
  * @export
20
20
  * @interface Equipment
21
21
  */
22
22
  export interface Equipment {
23
23
  /**
24
- * 设备编码
25
- * @type {string}
26
- * @memberof Equipment
27
- */
28
- 'equipmentCode': string;
29
- /**
30
- * 设备名称
31
- * @type {string}
32
- * @memberof Equipment
33
- */
34
- 'equipmentName': string;
35
- /**
36
- * 设备系统
37
- * @type {string}
38
- * @memberof Equipment
39
- */
40
- 'equipmentSystem'?: string;
41
- /**
42
- * 设备状态 1:再用,2:待维修,3:待报废,4:已报废,5:已处置,6:已冻结
24
+ * 设备id
43
25
  * @type {number}
44
26
  * @memberof Equipment
45
27
  */
46
- 'equipmentStatus': number;
47
- /**
48
- * 维保类型 FACILITY,TOTAL_PACKAGE,THIRD_PARTY
49
- * @type {string}
50
- * @memberof Equipment
51
- */
52
- 'maintenanceType'?: string;
53
- /**
54
- * 维保公司
55
- * @type {string}
56
- * @memberof Equipment
57
- */
58
- 'maintenanceCompany'?: string;
59
- /**
60
- * 维保等级
61
- * @type {string}
62
- * @memberof Equipment
63
- */
64
- 'maintenanceLevel'?: string;
65
- /**
66
- * 维保联系人
67
- * @type {string}
68
- * @memberof Equipment
69
- */
70
- 'maintenanceContact'?: string;
28
+ 'equipmentId'?: number;
71
29
  /**
72
- * 设备手册
73
- * @type {Array<string>}
74
- * @memberof Equipment
75
- */
76
- 'equipmentManuals'?: Array<string>;
77
- /**
78
- * 出厂时间(格式:yyyy-MM-dd HH:mm:ss)
79
- * @type {string}
80
- * @memberof Equipment
81
- */
82
- 'deliveryTime'?: string;
83
- /**
84
- * 安装时间(格式:yyyy-MM-dd HH:mm:ss)
30
+ * 设备名称
85
31
  * @type {string}
86
32
  * @memberof Equipment
87
33
  */
88
- 'installTime'?: string;
34
+ 'equipmentName'?: string;
89
35
  /**
90
- * 质保到期时间(格式:yyyy-MM-dd HH:mm:ss)
91
- * @type {string}
36
+ * 关联设备
37
+ * @type {Array<number>}
92
38
  * @memberof Equipment
93
39
  */
94
- 'warrantyTime'?: string;
40
+ 'relatedEquipmentIds'?: Array<number>;
95
41
  }
96
42
 
@@ -44,6 +44,12 @@ export interface GetUserWx200Response {
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
46
  'headerNames'?: Array<string>;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof GetUserWx200Response
51
+ */
52
+ 'bufferSize'?: number;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -68,12 +74,6 @@ export interface GetUserWx200Response {
68
74
  * @memberof GetUserWx200Response
69
75
  */
70
76
  'locale'?: GetUserWx200ResponseLocale;
71
- /**
72
- *
73
- * @type {number}
74
- * @memberof GetUserWx200Response
75
- */
76
- 'bufferSize'?: number;
77
77
  /**
78
78
  *
79
79
  * @type {string}
package/models/index.ts CHANGED
@@ -794,6 +794,7 @@ export * from './switch-park-v2-dto';
794
794
  export * from './sync-device-unit-vo';
795
795
  export * from './sync-equipment-status-vo';
796
796
  export * from './sync-equipment-vo';
797
+ export * from './sync-equipment-vo-equipment';
797
798
  export * from './sys-config';
798
799
  export * from './sys-dept';
799
800
  export * from './sys-dept-drop-down-box-list-dto';
@@ -0,0 +1,96 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 设备信息
19
+ * @export
20
+ * @interface SyncEquipmentVoEquipment
21
+ */
22
+ export interface SyncEquipmentVoEquipment {
23
+ /**
24
+ * 设备编码
25
+ * @type {string}
26
+ * @memberof SyncEquipmentVoEquipment
27
+ */
28
+ 'equipmentCode': string;
29
+ /**
30
+ * 设备名称
31
+ * @type {string}
32
+ * @memberof SyncEquipmentVoEquipment
33
+ */
34
+ 'equipmentName': string;
35
+ /**
36
+ * 设备系统
37
+ * @type {string}
38
+ * @memberof SyncEquipmentVoEquipment
39
+ */
40
+ 'equipmentSystem'?: string;
41
+ /**
42
+ * 设备状态 1:再用,2:待维修,3:待报废,4:已报废,5:已处置,6:已冻结
43
+ * @type {number}
44
+ * @memberof SyncEquipmentVoEquipment
45
+ */
46
+ 'equipmentStatus': number;
47
+ /**
48
+ * 维保类型 FACILITY,TOTAL_PACKAGE,THIRD_PARTY
49
+ * @type {string}
50
+ * @memberof SyncEquipmentVoEquipment
51
+ */
52
+ 'maintenanceType'?: string;
53
+ /**
54
+ * 维保公司
55
+ * @type {string}
56
+ * @memberof SyncEquipmentVoEquipment
57
+ */
58
+ 'maintenanceCompany'?: string;
59
+ /**
60
+ * 维保等级
61
+ * @type {string}
62
+ * @memberof SyncEquipmentVoEquipment
63
+ */
64
+ 'maintenanceLevel'?: string;
65
+ /**
66
+ * 维保联系人
67
+ * @type {string}
68
+ * @memberof SyncEquipmentVoEquipment
69
+ */
70
+ 'maintenanceContact'?: string;
71
+ /**
72
+ * 设备手册
73
+ * @type {Array<string>}
74
+ * @memberof SyncEquipmentVoEquipment
75
+ */
76
+ 'equipmentManuals'?: Array<string>;
77
+ /**
78
+ * 出厂时间(格式:yyyy-MM-dd HH:mm:ss)
79
+ * @type {string}
80
+ * @memberof SyncEquipmentVoEquipment
81
+ */
82
+ 'deliveryTime'?: string;
83
+ /**
84
+ * 安装时间(格式:yyyy-MM-dd HH:mm:ss)
85
+ * @type {string}
86
+ * @memberof SyncEquipmentVoEquipment
87
+ */
88
+ 'installTime'?: string;
89
+ /**
90
+ * 质保到期时间(格式:yyyy-MM-dd HH:mm:ss)
91
+ * @type {string}
92
+ * @memberof SyncEquipmentVoEquipment
93
+ */
94
+ 'warrantyTime'?: string;
95
+ }
96
+
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import type { Equipment } from './equipment';
18
+ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
19
19
 
20
20
  /**
21
21
  * 同步设备参数
@@ -37,9 +37,9 @@ export interface SyncEquipmentVo {
37
37
  'source': string;
38
38
  /**
39
39
  * 设备列表
40
- * @type {Array<Equipment>}
40
+ * @type {Array<SyncEquipmentVoEquipment>}
41
41
  * @memberof SyncEquipmentVo
42
42
  */
43
- 'equipments'?: Array<Equipment>;
43
+ 'equipments'?: Array<SyncEquipmentVoEquipment>;
44
44
  }
45
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.2-alpha.178",
3
+ "version": "4.1.2-alpha.179",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {