@gizone/rrs-client 4.1.0-alpha.133 → 4.1.0-alpha.135

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.
@@ -0,0 +1,36 @@
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 EquipmentWorkOrderStatistics
21
+ */
22
+ export interface EquipmentWorkOrderStatistics {
23
+ /**
24
+ * 数量
25
+ * @type {number}
26
+ * @memberof EquipmentWorkOrderStatistics
27
+ */
28
+ 'count'?: number;
29
+ /**
30
+ * 最后时间
31
+ * @type {string}
32
+ * @memberof EquipmentWorkOrderStatistics
33
+ */
34
+ 'lastTime'?: string;
35
+ }
36
+
@@ -28,28 +28,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
28
28
  export interface GetUserWx200Response {
29
29
  /**
30
30
  *
31
- * @type {number}
32
- * @memberof GetUserWx200Response
33
- */
34
- 'status'?: number;
35
- /**
36
- *
37
- * @type {Array<string>}
31
+ * @type {object}
38
32
  * @memberof GetUserWx200Response
39
33
  */
40
- 'headerNames'?: Array<string>;
34
+ 'trailerFields'?: object;
41
35
  /**
42
36
  *
43
- * @type {object}
37
+ * @type {number}
44
38
  * @memberof GetUserWx200Response
45
39
  */
46
- 'trailerFields'?: object;
40
+ 'status'?: number;
47
41
  /**
48
42
  *
49
- * @type {GetUserWx200ResponseLocale}
43
+ * @type {Array<string>}
50
44
  * @memberof GetUserWx200Response
51
45
  */
52
- 'locale'?: GetUserWx200ResponseLocale;
46
+ 'headerNames'?: Array<string>;
53
47
  /**
54
48
  *
55
49
  * @type {string}
@@ -68,6 +62,12 @@ export interface GetUserWx200Response {
68
62
  * @memberof GetUserWx200Response
69
63
  */
70
64
  'outputStream'?: GetUserWx200ResponseOutputStream;
65
+ /**
66
+ *
67
+ * @type {GetUserWx200ResponseLocale}
68
+ * @memberof GetUserWx200Response
69
+ */
70
+ 'locale'?: GetUserWx200ResponseLocale;
71
71
  /**
72
72
  *
73
73
  * @type {number}
package/models/index.ts CHANGED
@@ -187,6 +187,7 @@ export * from './equipment-system-team-vo';
187
187
  export * from './equipment-system-tree-dto';
188
188
  export * from './equipment-tree-dto';
189
189
  export * from './equipment-tree-details-dto';
190
+ export * from './equipment-work-order-statistics';
190
191
  export * from './esg-park-by-series-dto';
191
192
  export * from './esg-park-by-series-details-dto';
192
193
  export * from './esg-park-carbon-emission-details-dto';
@@ -41,12 +41,6 @@ export interface IPageAccessVO {
41
41
  * @memberof IPageAccessVO
42
42
  */
43
43
  'records'?: Array<AccessVO>;
44
- /**
45
- *
46
- * @type {boolean}
47
- * @memberof IPageAccessVO
48
- */
49
- 'searchCount'?: boolean;
50
44
  /**
51
45
  *
52
46
  * @type {number}
@@ -60,6 +54,12 @@ export interface IPageAccessVO {
60
54
  * @deprecated
61
55
  */
62
56
  'hitCount'?: boolean;
57
+ /**
58
+ *
59
+ * @type {boolean}
60
+ * @memberof IPageAccessVO
61
+ */
62
+ 'searchCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import type { EquipmentWorkOrderStatistics } from './equipment-work-order-statistics';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import type { FunctionalAreaEnum } from './functional-area-enum';
@@ -143,6 +146,12 @@ export interface SurveillanceDetailsDto {
143
146
  * @memberof SurveillanceDetailsDto
144
147
  */
145
148
  'hikGetCamerasInfo'?: HikGetCamerasInfoVO;
149
+ /**
150
+ *
151
+ * @type {EquipmentWorkOrderStatistics}
152
+ * @memberof SurveillanceDetailsDto
153
+ */
154
+ 'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
146
155
  }
147
156
 
148
157
 
@@ -24,6 +24,9 @@ import type { WorkOrderExtData } from './work-order-ext-data';
24
24
  import type { WorkOrderHandlerDto } from './work-order-handler-dto';
25
25
  // May contain unused imports in some cases
26
26
  // @ts-ignore
27
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
28
+ // May contain unused imports in some cases
29
+ // @ts-ignore
27
30
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
28
31
 
29
32
  /**
@@ -124,16 +127,22 @@ export interface WorkOrderSearchDTO {
124
127
  'inspectionException'?: boolean;
125
128
  /**
126
129
  *
127
- * @type {WorkOrderHandlerDto}
130
+ * @type {WorkOrderIssueTypeEnum}
128
131
  * @memberof WorkOrderSearchDTO
129
132
  */
130
- 'handler'?: WorkOrderHandlerDto;
133
+ 'workOrderIssueType'?: WorkOrderIssueTypeEnum;
131
134
  /**
132
135
  *
133
136
  * @type {WorkOrderExtData}
134
137
  * @memberof WorkOrderSearchDTO
135
138
  */
136
139
  'workOrderExtData'?: WorkOrderExtData;
140
+ /**
141
+ *
142
+ * @type {WorkOrderHandlerDto}
143
+ * @memberof WorkOrderSearchDTO
144
+ */
145
+ 'handler'?: WorkOrderHandlerDto;
137
146
  }
138
147
 
139
148
  export const WorkOrderSearchDTOWorkOrderStatusEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.0-alpha.133",
3
+ "version": "4.1.0-alpha.135",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {