@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.
@@ -749,6 +749,86 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
749
749
  options: localVarRequestOptions,
750
750
  };
751
751
  }),
752
+ /**
753
+ *
754
+ * @summary 工单管理列表-没有数据权限
755
+ * @param {string} [workOrderName] 工单号/工单名称
756
+ * @param {Array<WorkOrderTypeEnum>} [workOrderTypes] 工单类型数组
757
+ * @param {PublicWorkOrderListWorkOrderStatusEnum} [workOrderStatus] 工单状态
758
+ * @param {string} [startTime] 发起时间(开始)
759
+ * @param {string} [endTime] 发起时间(结束)
760
+ * @param {number} [handlerUserId] 处理人ID
761
+ * @param {number} [parkId] 园区ID
762
+ * @param {PublicWorkOrderListSamplingResultsEnum} [samplingResults] 抽检状态
763
+ * @param {number} [executionDeptId] 执行部门ID(传-1代表查询无执行部门的工单)
764
+ * @param {boolean} [inspectionException] 是否异常
765
+ * @param {number} [equipmentId] 设备ID
766
+ * @param {number} [page] 当前页码
767
+ * @param {number} [pageSize] 每页数量
768
+ * @param {*} [options] Override http request option.
769
+ * @throws {RequiredError}
770
+ */
771
+ publicWorkOrderList: (workOrderName_1, workOrderTypes_1, workOrderStatus_1, startTime_1, endTime_1, handlerUserId_1, parkId_1, samplingResults_1, executionDeptId_1, inspectionException_1, equipmentId_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [workOrderName_1, workOrderTypes_1, workOrderStatus_1, startTime_1, endTime_1, handlerUserId_1, parkId_1, samplingResults_1, executionDeptId_1, inspectionException_1, equipmentId_1, page_1, pageSize_1, ...args_1], void 0, function* (workOrderName, workOrderTypes, workOrderStatus, startTime, endTime, handlerUserId, parkId, samplingResults, executionDeptId, inspectionException, equipmentId, page, pageSize, options = {}) {
772
+ const localVarPath = `/gizone/workOrder/public/list`;
773
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
774
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
775
+ let baseOptions;
776
+ if (configuration) {
777
+ baseOptions = configuration.baseOptions;
778
+ }
779
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
780
+ const localVarHeaderParameter = {};
781
+ const localVarQueryParameter = {};
782
+ // authentication tokenScheme required
783
+ // http bearer authentication required
784
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
785
+ if (workOrderName !== undefined) {
786
+ localVarQueryParameter['workOrderName'] = workOrderName;
787
+ }
788
+ if (workOrderTypes) {
789
+ localVarQueryParameter['workOrderTypes'] = workOrderTypes;
790
+ }
791
+ if (workOrderStatus !== undefined) {
792
+ localVarQueryParameter['workOrderStatus'] = workOrderStatus;
793
+ }
794
+ if (startTime !== undefined) {
795
+ localVarQueryParameter['startTime'] = startTime;
796
+ }
797
+ if (endTime !== undefined) {
798
+ localVarQueryParameter['endTime'] = endTime;
799
+ }
800
+ if (handlerUserId !== undefined) {
801
+ localVarQueryParameter['handlerUserId'] = handlerUserId;
802
+ }
803
+ if (parkId !== undefined) {
804
+ localVarQueryParameter['parkId'] = parkId;
805
+ }
806
+ if (samplingResults !== undefined) {
807
+ localVarQueryParameter['samplingResults'] = samplingResults;
808
+ }
809
+ if (executionDeptId !== undefined) {
810
+ localVarQueryParameter['executionDeptId'] = executionDeptId;
811
+ }
812
+ if (inspectionException !== undefined) {
813
+ localVarQueryParameter['inspectionException'] = inspectionException;
814
+ }
815
+ if (equipmentId !== undefined) {
816
+ localVarQueryParameter['equipmentId'] = equipmentId;
817
+ }
818
+ if (page !== undefined) {
819
+ localVarQueryParameter['page'] = page;
820
+ }
821
+ if (pageSize !== undefined) {
822
+ localVarQueryParameter['pageSize'] = pageSize;
823
+ }
824
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
825
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
826
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
827
+ return {
828
+ url: toPathString(localVarUrlObj),
829
+ options: localVarRequestOptions,
830
+ };
831
+ }),
752
832
  /**
753
833
  *
754
834
  * @summary 二维码详情
@@ -956,6 +1036,34 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
956
1036
  options: localVarRequestOptions,
957
1037
  };
958
1038
  }),
1039
+ /**
1040
+ *
1041
+ * @summary 更新SQM索赔单状态
1042
+ * @param {*} [options] Override http request option.
1043
+ * @throws {RequiredError}
1044
+ */
1045
+ updateSqmStatus: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
1046
+ const localVarPath = `/gizone/workOrder/violation/updateSqmStatus`;
1047
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
1048
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
1049
+ let baseOptions;
1050
+ if (configuration) {
1051
+ baseOptions = configuration.baseOptions;
1052
+ }
1053
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
1054
+ const localVarHeaderParameter = {};
1055
+ const localVarQueryParameter = {};
1056
+ // authentication tokenScheme required
1057
+ // http bearer authentication required
1058
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
1059
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
1060
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1061
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
1062
+ return {
1063
+ url: toPathString(localVarUrlObj),
1064
+ options: localVarRequestOptions,
1065
+ };
1066
+ }),
959
1067
  /**
960
1068
  *
961
1069
  * @summary 工单关闭
@@ -2198,6 +2306,34 @@ export const WorkOrderApiFp = function (configuration) {
2198
2306
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2199
2307
  });
2200
2308
  },
2309
+ /**
2310
+ *
2311
+ * @summary 工单管理列表-没有数据权限
2312
+ * @param {string} [workOrderName] 工单号/工单名称
2313
+ * @param {Array<WorkOrderTypeEnum>} [workOrderTypes] 工单类型数组
2314
+ * @param {PublicWorkOrderListWorkOrderStatusEnum} [workOrderStatus] 工单状态
2315
+ * @param {string} [startTime] 发起时间(开始)
2316
+ * @param {string} [endTime] 发起时间(结束)
2317
+ * @param {number} [handlerUserId] 处理人ID
2318
+ * @param {number} [parkId] 园区ID
2319
+ * @param {PublicWorkOrderListSamplingResultsEnum} [samplingResults] 抽检状态
2320
+ * @param {number} [executionDeptId] 执行部门ID(传-1代表查询无执行部门的工单)
2321
+ * @param {boolean} [inspectionException] 是否异常
2322
+ * @param {number} [equipmentId] 设备ID
2323
+ * @param {number} [page] 当前页码
2324
+ * @param {number} [pageSize] 每页数量
2325
+ * @param {*} [options] Override http request option.
2326
+ * @throws {RequiredError}
2327
+ */
2328
+ publicWorkOrderList(workOrderName, workOrderTypes, workOrderStatus, startTime, endTime, handlerUserId, parkId, samplingResults, executionDeptId, inspectionException, equipmentId, page, pageSize, options) {
2329
+ return __awaiter(this, void 0, void 0, function* () {
2330
+ var _a, _b, _c;
2331
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.publicWorkOrderList(workOrderName, workOrderTypes, workOrderStatus, startTime, endTime, handlerUserId, parkId, samplingResults, executionDeptId, inspectionException, equipmentId, page, pageSize, options);
2332
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2333
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WorkOrderApi.publicWorkOrderList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2334
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2335
+ });
2336
+ },
2201
2337
  /**
2202
2338
  *
2203
2339
  * @summary 二维码详情
@@ -2295,6 +2431,21 @@ export const WorkOrderApiFp = function (configuration) {
2295
2431
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2296
2432
  });
2297
2433
  },
2434
+ /**
2435
+ *
2436
+ * @summary 更新SQM索赔单状态
2437
+ * @param {*} [options] Override http request option.
2438
+ * @throws {RequiredError}
2439
+ */
2440
+ updateSqmStatus(options) {
2441
+ return __awaiter(this, void 0, void 0, function* () {
2442
+ var _a, _b, _c;
2443
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.updateSqmStatus(options);
2444
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2445
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WorkOrderApi.updateSqmStatus']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2446
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2447
+ });
2448
+ },
2298
2449
  /**
2299
2450
  *
2300
2451
  * @summary 工单关闭
@@ -2917,6 +3068,16 @@ export const WorkOrderApiFactory = function (configuration, basePath, axios) {
2917
3068
  processWorkOrder(requestParameters, options) {
2918
3069
  return localVarFp.processWorkOrder(requestParameters.workOrderId, requestParameters.processWorkOrderVo, options).then((request) => request(axios, basePath));
2919
3070
  },
3071
+ /**
3072
+ *
3073
+ * @summary 工单管理列表-没有数据权限
3074
+ * @param {WorkOrderApiPublicWorkOrderListRequest} requestParameters Request parameters.
3075
+ * @param {*} [options] Override http request option.
3076
+ * @throws {RequiredError}
3077
+ */
3078
+ publicWorkOrderList(requestParameters = {}, options) {
3079
+ return localVarFp.publicWorkOrderList(requestParameters.workOrderName, requestParameters.workOrderTypes, requestParameters.workOrderStatus, requestParameters.startTime, requestParameters.endTime, requestParameters.handlerUserId, requestParameters.parkId, requestParameters.samplingResults, requestParameters.executionDeptId, requestParameters.inspectionException, requestParameters.equipmentId, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
3080
+ },
2920
3081
  /**
2921
3082
  *
2922
3083
  * @summary 二维码详情
@@ -2977,6 +3138,15 @@ export const WorkOrderApiFactory = function (configuration, basePath, axios) {
2977
3138
  toState(requestParameters, options) {
2978
3139
  return localVarFp.toState(requestParameters.planToStateVo, options).then((request) => request(axios, basePath));
2979
3140
  },
3141
+ /**
3142
+ *
3143
+ * @summary 更新SQM索赔单状态
3144
+ * @param {*} [options] Override http request option.
3145
+ * @throws {RequiredError}
3146
+ */
3147
+ updateSqmStatus(options) {
3148
+ return localVarFp.updateSqmStatus(options).then((request) => request(axios, basePath));
3149
+ },
2980
3150
  /**
2981
3151
  *
2982
3152
  * @summary 工单关闭
@@ -3445,6 +3615,17 @@ export class WorkOrderApi extends BaseAPI {
3445
3615
  processWorkOrder(requestParameters, options) {
3446
3616
  return WorkOrderApiFp(this.configuration).processWorkOrder(requestParameters.workOrderId, requestParameters.processWorkOrderVo, options).then((request) => request(this.axios, this.basePath));
3447
3617
  }
3618
+ /**
3619
+ *
3620
+ * @summary 工单管理列表-没有数据权限
3621
+ * @param {WorkOrderApiPublicWorkOrderListRequest} requestParameters Request parameters.
3622
+ * @param {*} [options] Override http request option.
3623
+ * @throws {RequiredError}
3624
+ * @memberof WorkOrderApi
3625
+ */
3626
+ publicWorkOrderList(requestParameters = {}, options) {
3627
+ return WorkOrderApiFp(this.configuration).publicWorkOrderList(requestParameters.workOrderName, requestParameters.workOrderTypes, requestParameters.workOrderStatus, requestParameters.startTime, requestParameters.endTime, requestParameters.handlerUserId, requestParameters.parkId, requestParameters.samplingResults, requestParameters.executionDeptId, requestParameters.inspectionException, requestParameters.equipmentId, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
3628
+ }
3448
3629
  /**
3449
3630
  *
3450
3631
  * @summary 二维码详情
@@ -3511,6 +3692,16 @@ export class WorkOrderApi extends BaseAPI {
3511
3692
  toState(requestParameters, options) {
3512
3693
  return WorkOrderApiFp(this.configuration).toState(requestParameters.planToStateVo, options).then((request) => request(this.axios, this.basePath));
3513
3694
  }
3695
+ /**
3696
+ *
3697
+ * @summary 更新SQM索赔单状态
3698
+ * @param {*} [options] Override http request option.
3699
+ * @throws {RequiredError}
3700
+ * @memberof WorkOrderApi
3701
+ */
3702
+ updateSqmStatus(options) {
3703
+ return WorkOrderApiFp(this.configuration).updateSqmStatus(options).then((request) => request(this.axios, this.basePath));
3704
+ }
3514
3705
  /**
3515
3706
  *
3516
3707
  * @summary 工单关闭
@@ -3814,6 +4005,24 @@ export const PlanListPlanTypeEnum = {
3814
4005
  PlanTypeAiInspection: 'PLAN_TYPE_AI_INSPECTION',
3815
4006
  PlanTypeXunjianEquipment: 'PLAN_TYPE_XUNJIAN_EQUIPMENT'
3816
4007
  };
4008
+ /**
4009
+ * @export
4010
+ */
4011
+ export const PublicWorkOrderListWorkOrderStatusEnum = {
4012
+ Pending: 'PENDING',
4013
+ InProgress: 'IN_PROGRESS',
4014
+ Completed: 'COMPLETED',
4015
+ Overdue: 'OVERDUE',
4016
+ Closed: 'CLOSED'
4017
+ };
4018
+ /**
4019
+ * @export
4020
+ */
4021
+ export const PublicWorkOrderListSamplingResultsEnum = {
4022
+ Zero: 'ZERO',
4023
+ One: 'ONE',
4024
+ Two: 'TWO'
4025
+ };
3817
4026
  /**
3818
4027
  * @export
3819
4028
  */
@@ -0,0 +1,30 @@
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 EquipmentWorkOrderStatistics
16
+ */
17
+ export interface EquipmentWorkOrderStatistics {
18
+ /**
19
+ * 数量
20
+ * @type {number}
21
+ * @memberof EquipmentWorkOrderStatistics
22
+ */
23
+ 'count'?: number;
24
+ /**
25
+ * 最后时间
26
+ * @type {string}
27
+ * @memberof EquipmentWorkOrderStatistics
28
+ */
29
+ 'lastTime'?: string;
30
+ }
@@ -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 {};
@@ -19,28 +19,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
23
- * @memberof GetUserWx200Response
24
- */
25
- 'status'?: number;
26
- /**
27
- *
28
- * @type {Array<string>}
22
+ * @type {object}
29
23
  * @memberof GetUserWx200Response
30
24
  */
31
- 'headerNames'?: Array<string>;
25
+ 'trailerFields'?: object;
32
26
  /**
33
27
  *
34
- * @type {object}
28
+ * @type {number}
35
29
  * @memberof GetUserWx200Response
36
30
  */
37
- 'trailerFields'?: object;
31
+ 'status'?: number;
38
32
  /**
39
33
  *
40
- * @type {GetUserWx200ResponseLocale}
34
+ * @type {Array<string>}
41
35
  * @memberof GetUserWx200Response
42
36
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
37
+ 'headerNames'?: Array<string>;
44
38
  /**
45
39
  *
46
40
  * @type {string}
@@ -59,6 +53,12 @@ export interface GetUserWx200Response {
59
53
  * @memberof GetUserWx200Response
60
54
  */
61
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
+ /**
57
+ *
58
+ * @type {GetUserWx200ResponseLocale}
59
+ * @memberof GetUserWx200Response
60
+ */
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -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';
@@ -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';
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
34
34
  * @memberof IPageAccessVO
35
35
  */
36
36
  'records'?: Array<AccessVO>;
37
- /**
38
- *
39
- * @type {boolean}
40
- * @memberof IPageAccessVO
41
- */
42
- 'searchCount'?: boolean;
43
37
  /**
44
38
  *
45
39
  * @type {number}
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
53
47
  * @deprecated
54
48
  */
55
49
  'hitCount'?: boolean;
50
+ /**
51
+ *
52
+ * @type {boolean}
53
+ * @memberof IPageAccessVO
54
+ */
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { EquipmentWorkOrderStatistics } from './equipment-work-order-statistics';
12
13
  import type { FunctionalAreaEnum } from './functional-area-enum';
13
14
  import type { HikGetCamerasInfoVO } from './hik-get-cameras-info-vo';
14
15
  import type { InstallationBodyEnum } from './installation-body-enum';
@@ -128,4 +129,10 @@ export interface SurveillanceDetailsDto {
128
129
  * @memberof SurveillanceDetailsDto
129
130
  */
130
131
  'hikGetCamerasInfo'?: HikGetCamerasInfoVO;
132
+ /**
133
+ *
134
+ * @type {EquipmentWorkOrderStatistics}
135
+ * @memberof SurveillanceDetailsDto
136
+ */
137
+ 'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
131
138
  }
@@ -12,6 +12,7 @@
12
12
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
13
13
  import type { WorkOrderExtData } from './work-order-ext-data';
14
14
  import type { WorkOrderHandlerDto } from './work-order-handler-dto';
15
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
15
16
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
16
17
  /**
17
18
  * 工单查询DTO
@@ -111,16 +112,22 @@ export interface WorkOrderSearchDTO {
111
112
  'inspectionException'?: boolean;
112
113
  /**
113
114
  *
114
- * @type {WorkOrderHandlerDto}
115
+ * @type {WorkOrderIssueTypeEnum}
115
116
  * @memberof WorkOrderSearchDTO
116
117
  */
117
- 'handler'?: WorkOrderHandlerDto;
118
+ 'workOrderIssueType'?: WorkOrderIssueTypeEnum;
118
119
  /**
119
120
  *
120
121
  * @type {WorkOrderExtData}
121
122
  * @memberof WorkOrderSearchDTO
122
123
  */
123
124
  'workOrderExtData'?: WorkOrderExtData;
125
+ /**
126
+ *
127
+ * @type {WorkOrderHandlerDto}
128
+ * @memberof WorkOrderSearchDTO
129
+ */
130
+ 'handler'?: WorkOrderHandlerDto;
124
131
  }
125
132
  export declare const WorkOrderSearchDTOWorkOrderStatusEnum: {
126
133
  readonly Pending: "PENDING";
@@ -0,0 +1,30 @@
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 EquipmentWorkOrderStatistics
16
+ */
17
+ export interface EquipmentWorkOrderStatistics {
18
+ /**
19
+ * 数量
20
+ * @type {number}
21
+ * @memberof EquipmentWorkOrderStatistics
22
+ */
23
+ 'count'?: number;
24
+ /**
25
+ * 最后时间
26
+ * @type {string}
27
+ * @memberof EquipmentWorkOrderStatistics
28
+ */
29
+ 'lastTime'?: string;
30
+ }
@@ -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 });
@@ -19,28 +19,22 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {number}
23
- * @memberof GetUserWx200Response
24
- */
25
- 'status'?: number;
26
- /**
27
- *
28
- * @type {Array<string>}
22
+ * @type {object}
29
23
  * @memberof GetUserWx200Response
30
24
  */
31
- 'headerNames'?: Array<string>;
25
+ 'trailerFields'?: object;
32
26
  /**
33
27
  *
34
- * @type {object}
28
+ * @type {number}
35
29
  * @memberof GetUserWx200Response
36
30
  */
37
- 'trailerFields'?: object;
31
+ 'status'?: number;
38
32
  /**
39
33
  *
40
- * @type {GetUserWx200ResponseLocale}
34
+ * @type {Array<string>}
41
35
  * @memberof GetUserWx200Response
42
36
  */
43
- 'locale'?: GetUserWx200ResponseLocale;
37
+ 'headerNames'?: Array<string>;
44
38
  /**
45
39
  *
46
40
  * @type {string}
@@ -59,6 +53,12 @@ export interface GetUserWx200Response {
59
53
  * @memberof GetUserWx200Response
60
54
  */
61
55
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
+ /**
57
+ *
58
+ * @type {GetUserWx200ResponseLocale}
59
+ * @memberof GetUserWx200Response
60
+ */
61
+ 'locale'?: GetUserWx200ResponseLocale;
62
62
  /**
63
63
  *
64
64
  * @type {number}
@@ -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';
@@ -203,6 +203,7 @@ __exportStar(require("./equipment-system-team-vo"), exports);
203
203
  __exportStar(require("./equipment-system-tree-dto"), exports);
204
204
  __exportStar(require("./equipment-tree-dto"), exports);
205
205
  __exportStar(require("./equipment-tree-details-dto"), exports);
206
+ __exportStar(require("./equipment-work-order-statistics"), exports);
206
207
  __exportStar(require("./esg-park-by-series-dto"), exports);
207
208
  __exportStar(require("./esg-park-by-series-details-dto"), exports);
208
209
  __exportStar(require("./esg-park-carbon-emission-details-dto"), exports);
@@ -34,12 +34,6 @@ export interface IPageAccessVO {
34
34
  * @memberof IPageAccessVO
35
35
  */
36
36
  'records'?: Array<AccessVO>;
37
- /**
38
- *
39
- * @type {boolean}
40
- * @memberof IPageAccessVO
41
- */
42
- 'searchCount'?: boolean;
43
37
  /**
44
38
  *
45
39
  * @type {number}
@@ -53,6 +47,12 @@ export interface IPageAccessVO {
53
47
  * @deprecated
54
48
  */
55
49
  'hitCount'?: boolean;
50
+ /**
51
+ *
52
+ * @type {boolean}
53
+ * @memberof IPageAccessVO
54
+ */
55
+ 'searchCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { EquipmentWorkOrderStatistics } from './equipment-work-order-statistics';
12
13
  import type { FunctionalAreaEnum } from './functional-area-enum';
13
14
  import type { HikGetCamerasInfoVO } from './hik-get-cameras-info-vo';
14
15
  import type { InstallationBodyEnum } from './installation-body-enum';
@@ -128,4 +129,10 @@ export interface SurveillanceDetailsDto {
128
129
  * @memberof SurveillanceDetailsDto
129
130
  */
130
131
  'hikGetCamerasInfo'?: HikGetCamerasInfoVO;
132
+ /**
133
+ *
134
+ * @type {EquipmentWorkOrderStatistics}
135
+ * @memberof SurveillanceDetailsDto
136
+ */
137
+ 'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
131
138
  }
@@ -12,6 +12,7 @@
12
12
  import type { WorkOrderDeptDTO } from './work-order-dept-dto';
13
13
  import type { WorkOrderExtData } from './work-order-ext-data';
14
14
  import type { WorkOrderHandlerDto } from './work-order-handler-dto';
15
+ import type { WorkOrderIssueTypeEnum } from './work-order-issue-type-enum';
15
16
  import type { WorkOrderTypeEnum } from './work-order-type-enum';
16
17
  /**
17
18
  * 工单查询DTO
@@ -111,16 +112,22 @@ export interface WorkOrderSearchDTO {
111
112
  'inspectionException'?: boolean;
112
113
  /**
113
114
  *
114
- * @type {WorkOrderHandlerDto}
115
+ * @type {WorkOrderIssueTypeEnum}
115
116
  * @memberof WorkOrderSearchDTO
116
117
  */
117
- 'handler'?: WorkOrderHandlerDto;
118
+ 'workOrderIssueType'?: WorkOrderIssueTypeEnum;
118
119
  /**
119
120
  *
120
121
  * @type {WorkOrderExtData}
121
122
  * @memberof WorkOrderSearchDTO
122
123
  */
123
124
  'workOrderExtData'?: WorkOrderExtData;
125
+ /**
126
+ *
127
+ * @type {WorkOrderHandlerDto}
128
+ * @memberof WorkOrderSearchDTO
129
+ */
130
+ 'handler'?: WorkOrderHandlerDto;
124
131
  }
125
132
  export declare const WorkOrderSearchDTOWorkOrderStatusEnum: {
126
133
  readonly Pending: "PENDING";