@gizone/rrs-client 4.2.0-alpha.281 → 4.2.0-alpha.283
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.
- package/.openapi-generator/FILES +0 -1
- package/api.ts +0 -1
- package/apis/open-api-api.ts +62 -26
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/apis/open-api-api.d.ts +34 -10
- package/dist/apis/open-api-api.js +39 -24
- package/dist/esm/api.d.ts +0 -1
- package/dist/esm/api.js +0 -1
- package/dist/esm/apis/open-api-api.d.ts +34 -10
- package/dist/esm/apis/open-api-api.js +39 -24
- package/dist/esm/models/get-user-wx200-response.d.ts +9 -9
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/login-type-enum.d.ts +0 -2
- package/dist/esm/models/login-type-enum.js +1 -3
- package/dist/esm/models/sync-equipment-status-vo.d.ts +2 -2
- package/dist/esm/models/sync-equipment-vo.d.ts +2 -2
- package/dist/esm/models/sys-user.d.ts +0 -6
- package/dist/models/get-user-wx200-response.d.ts +9 -9
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/login-type-enum.d.ts +0 -2
- package/dist/models/login-type-enum.js +1 -3
- package/dist/models/sync-equipment-status-vo.d.ts +2 -2
- package/dist/models/sync-equipment-vo.d.ts +2 -2
- package/dist/models/sys-user.d.ts +0 -6
- package/models/get-user-wx200-response.ts +9 -9
- package/models/ipage-access-vo.ts +6 -6
- package/models/login-type-enum.ts +1 -3
- package/models/sync-equipment-status-vo.ts +2 -2
- package/models/sync-equipment-vo.ts +2 -2
- package/models/sys-user.ts +0 -6
- package/package.json +1 -1
- package/apis/hwork-api.ts +0 -167
- package/dist/apis/hwork-api.d.ts +0 -96
- package/dist/apis/hwork-api.js +0 -145
- package/dist/esm/apis/hwork-api.d.ts +0 -96
- package/dist/esm/apis/hwork-api.js +0 -138
|
@@ -50,27 +50,30 @@ export declare const OpenApiApiAxiosParamCreator: (configuration?: Configuration
|
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @summary 批量新增设施设备
|
|
53
|
+
* @param {number} parkId
|
|
53
54
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
54
55
|
* @param {*} [options] Override http request option.
|
|
55
56
|
* @throws {RequiredError}
|
|
56
57
|
*/
|
|
57
|
-
openApiEquipmentBatchAdd: (syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
|
+
openApiEquipmentBatchAdd: (parkId: number, syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
58
59
|
/**
|
|
59
60
|
*
|
|
60
61
|
* @summary 批量更新设施设备状态
|
|
62
|
+
* @param {number} parkId
|
|
61
63
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
62
64
|
* @param {*} [options] Override http request option.
|
|
63
65
|
* @throws {RequiredError}
|
|
64
66
|
*/
|
|
65
|
-
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
|
+
openApiEquipmentBatchStatusSync: (parkId: number, syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
68
|
/**
|
|
67
69
|
*
|
|
68
70
|
* @summary 获取监控列表
|
|
69
|
-
* @param {
|
|
71
|
+
* @param {number} parkId
|
|
72
|
+
* @param {string} centerCode 中心编码(C码)
|
|
70
73
|
* @param {*} [options] Override http request option.
|
|
71
74
|
* @throws {RequiredError}
|
|
72
75
|
*/
|
|
73
|
-
openApiSurveillanceList: (
|
|
76
|
+
openApiSurveillanceList: (parkId: number, centerCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
77
|
/**
|
|
75
78
|
*
|
|
76
79
|
* @summary 获取园区监控关注区域
|
|
@@ -118,27 +121,30 @@ export declare const OpenApiApiFp: (configuration?: Configuration) => {
|
|
|
118
121
|
/**
|
|
119
122
|
*
|
|
120
123
|
* @summary 批量新增设施设备
|
|
124
|
+
* @param {number} parkId
|
|
121
125
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
122
126
|
* @param {*} [options] Override http request option.
|
|
123
127
|
* @throws {RequiredError}
|
|
124
128
|
*/
|
|
125
|
-
openApiEquipmentBatchAdd(syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
129
|
+
openApiEquipmentBatchAdd(parkId: number, syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
126
130
|
/**
|
|
127
131
|
*
|
|
128
132
|
* @summary 批量更新设施设备状态
|
|
133
|
+
* @param {number} parkId
|
|
129
134
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
130
135
|
* @param {*} [options] Override http request option.
|
|
131
136
|
* @throws {RequiredError}
|
|
132
137
|
*/
|
|
133
|
-
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
138
|
+
openApiEquipmentBatchStatusSync(parkId: number, syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
134
139
|
/**
|
|
135
140
|
*
|
|
136
141
|
* @summary 获取监控列表
|
|
137
|
-
* @param {
|
|
142
|
+
* @param {number} parkId
|
|
143
|
+
* @param {string} centerCode 中心编码(C码)
|
|
138
144
|
* @param {*} [options] Override http request option.
|
|
139
145
|
* @throws {RequiredError}
|
|
140
146
|
*/
|
|
141
|
-
openApiSurveillanceList(
|
|
147
|
+
openApiSurveillanceList(parkId: number, centerCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>>;
|
|
142
148
|
/**
|
|
143
149
|
*
|
|
144
150
|
* @summary 获取园区监控关注区域
|
|
@@ -305,6 +311,12 @@ export interface OpenApiApiAiMonitoringConfigByNodeIdRequest {
|
|
|
305
311
|
* @interface OpenApiApiOpenApiEquipmentBatchAddRequest
|
|
306
312
|
*/
|
|
307
313
|
export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @type {number}
|
|
317
|
+
* @memberof OpenApiApiOpenApiEquipmentBatchAdd
|
|
318
|
+
*/
|
|
319
|
+
readonly parkId: number;
|
|
308
320
|
/**
|
|
309
321
|
*
|
|
310
322
|
* @type {SyncEquipmentVo}
|
|
@@ -318,6 +330,12 @@ export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
|
318
330
|
* @interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest
|
|
319
331
|
*/
|
|
320
332
|
export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* @type {number}
|
|
336
|
+
* @memberof OpenApiApiOpenApiEquipmentBatchStatusSync
|
|
337
|
+
*/
|
|
338
|
+
readonly parkId: number;
|
|
321
339
|
/**
|
|
322
340
|
*
|
|
323
341
|
* @type {SyncEquipmentStatusVo}
|
|
@@ -332,11 +350,17 @@ export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
|
332
350
|
*/
|
|
333
351
|
export interface OpenApiApiOpenApiSurveillanceListRequest {
|
|
334
352
|
/**
|
|
335
|
-
*
|
|
353
|
+
*
|
|
354
|
+
* @type {number}
|
|
355
|
+
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
356
|
+
*/
|
|
357
|
+
readonly parkId: number;
|
|
358
|
+
/**
|
|
359
|
+
* 中心编码(C码)
|
|
336
360
|
* @type {string}
|
|
337
361
|
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
338
362
|
*/
|
|
339
|
-
readonly
|
|
363
|
+
readonly centerCode: string;
|
|
340
364
|
}
|
|
341
365
|
/**
|
|
342
366
|
* Request parameters for surveillanceRoiGetByParkId operation in OpenApiApi.
|
|
@@ -131,14 +131,18 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
131
131
|
/**
|
|
132
132
|
*
|
|
133
133
|
* @summary 批量新增设施设备
|
|
134
|
+
* @param {number} parkId
|
|
134
135
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
135
136
|
* @param {*} [options] Override http request option.
|
|
136
137
|
* @throws {RequiredError}
|
|
137
138
|
*/
|
|
138
|
-
openApiEquipmentBatchAdd: (syncEquipmentVo_1, ...args_1) => __awaiter(this, [syncEquipmentVo_1, ...args_1], void 0, function* (syncEquipmentVo, options = {}) {
|
|
139
|
+
openApiEquipmentBatchAdd: (parkId_1, syncEquipmentVo_1, ...args_1) => __awaiter(this, [parkId_1, syncEquipmentVo_1, ...args_1], void 0, function* (parkId, syncEquipmentVo, options = {}) {
|
|
140
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
141
|
+
assertParamExists('openApiEquipmentBatchAdd', 'parkId', parkId);
|
|
139
142
|
// verify required parameter 'syncEquipmentVo' is not null or undefined
|
|
140
143
|
assertParamExists('openApiEquipmentBatchAdd', 'syncEquipmentVo', syncEquipmentVo);
|
|
141
|
-
const localVarPath = `/openapi/v1/main/parks/equipment/batch
|
|
144
|
+
const localVarPath = `/openapi/v1/main/parks/{parkId}/equipment/batch`
|
|
145
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
142
146
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
143
147
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
144
148
|
let baseOptions;
|
|
@@ -164,14 +168,18 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
164
168
|
/**
|
|
165
169
|
*
|
|
166
170
|
* @summary 批量更新设施设备状态
|
|
171
|
+
* @param {number} parkId
|
|
167
172
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
168
173
|
* @param {*} [options] Override http request option.
|
|
169
174
|
* @throws {RequiredError}
|
|
170
175
|
*/
|
|
171
|
-
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo_1, ...args_1) => __awaiter(this, [syncEquipmentStatusVo_1, ...args_1], void 0, function* (syncEquipmentStatusVo, options = {}) {
|
|
176
|
+
openApiEquipmentBatchStatusSync: (parkId_1, syncEquipmentStatusVo_1, ...args_1) => __awaiter(this, [parkId_1, syncEquipmentStatusVo_1, ...args_1], void 0, function* (parkId, syncEquipmentStatusVo, options = {}) {
|
|
177
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
178
|
+
assertParamExists('openApiEquipmentBatchStatusSync', 'parkId', parkId);
|
|
172
179
|
// verify required parameter 'syncEquipmentStatusVo' is not null or undefined
|
|
173
180
|
assertParamExists('openApiEquipmentBatchStatusSync', 'syncEquipmentStatusVo', syncEquipmentStatusVo);
|
|
174
|
-
const localVarPath = `/openapi/v1/main/parks/equipment/batchStatusSync
|
|
181
|
+
const localVarPath = `/openapi/v1/main/parks/{parkId}/equipment/batchStatusSync`
|
|
182
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
175
183
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
176
184
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
177
185
|
let baseOptions;
|
|
@@ -197,14 +205,18 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
197
205
|
/**
|
|
198
206
|
*
|
|
199
207
|
* @summary 获取监控列表
|
|
200
|
-
* @param {
|
|
208
|
+
* @param {number} parkId
|
|
209
|
+
* @param {string} centerCode 中心编码(C码)
|
|
201
210
|
* @param {*} [options] Override http request option.
|
|
202
211
|
* @throws {RequiredError}
|
|
203
212
|
*/
|
|
204
|
-
openApiSurveillanceList: (
|
|
205
|
-
// verify required parameter '
|
|
206
|
-
assertParamExists('openApiSurveillanceList', '
|
|
207
|
-
|
|
213
|
+
openApiSurveillanceList: (parkId_1, centerCode_1, ...args_1) => __awaiter(this, [parkId_1, centerCode_1, ...args_1], void 0, function* (parkId, centerCode, options = {}) {
|
|
214
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
215
|
+
assertParamExists('openApiSurveillanceList', 'parkId', parkId);
|
|
216
|
+
// verify required parameter 'centerCode' is not null or undefined
|
|
217
|
+
assertParamExists('openApiSurveillanceList', 'centerCode', centerCode);
|
|
218
|
+
const localVarPath = `/openapi/v1/main/parks/{parkId}/surveillance`
|
|
219
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
208
220
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
209
221
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
210
222
|
let baseOptions;
|
|
@@ -217,8 +229,8 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
217
229
|
// authentication tokenScheme required
|
|
218
230
|
// http bearer authentication required
|
|
219
231
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
220
|
-
if (
|
|
221
|
-
localVarQueryParameter['
|
|
232
|
+
if (centerCode !== undefined) {
|
|
233
|
+
localVarQueryParameter['centerCode'] = centerCode;
|
|
222
234
|
}
|
|
223
235
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
224
236
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -342,14 +354,15 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
342
354
|
/**
|
|
343
355
|
*
|
|
344
356
|
* @summary 批量新增设施设备
|
|
357
|
+
* @param {number} parkId
|
|
345
358
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
346
359
|
* @param {*} [options] Override http request option.
|
|
347
360
|
* @throws {RequiredError}
|
|
348
361
|
*/
|
|
349
|
-
openApiEquipmentBatchAdd(syncEquipmentVo, options) {
|
|
362
|
+
openApiEquipmentBatchAdd(parkId, syncEquipmentVo, options) {
|
|
350
363
|
return __awaiter(this, void 0, void 0, function* () {
|
|
351
364
|
var _a, _b, _c;
|
|
352
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchAdd(syncEquipmentVo, options);
|
|
365
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchAdd(parkId, syncEquipmentVo, options);
|
|
353
366
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
354
367
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiEquipmentBatchAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
355
368
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -358,14 +371,15 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
358
371
|
/**
|
|
359
372
|
*
|
|
360
373
|
* @summary 批量更新设施设备状态
|
|
374
|
+
* @param {number} parkId
|
|
361
375
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
362
376
|
* @param {*} [options] Override http request option.
|
|
363
377
|
* @throws {RequiredError}
|
|
364
378
|
*/
|
|
365
|
-
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options) {
|
|
379
|
+
openApiEquipmentBatchStatusSync(parkId, syncEquipmentStatusVo, options) {
|
|
366
380
|
return __awaiter(this, void 0, void 0, function* () {
|
|
367
381
|
var _a, _b, _c;
|
|
368
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options);
|
|
382
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(parkId, syncEquipmentStatusVo, options);
|
|
369
383
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
370
384
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiEquipmentBatchStatusSync']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
371
385
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -374,14 +388,15 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
374
388
|
/**
|
|
375
389
|
*
|
|
376
390
|
* @summary 获取监控列表
|
|
377
|
-
* @param {
|
|
391
|
+
* @param {number} parkId
|
|
392
|
+
* @param {string} centerCode 中心编码(C码)
|
|
378
393
|
* @param {*} [options] Override http request option.
|
|
379
394
|
* @throws {RequiredError}
|
|
380
395
|
*/
|
|
381
|
-
openApiSurveillanceList(
|
|
396
|
+
openApiSurveillanceList(parkId, centerCode, options) {
|
|
382
397
|
return __awaiter(this, void 0, void 0, function* () {
|
|
383
398
|
var _a, _b, _c;
|
|
384
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSurveillanceList(
|
|
399
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSurveillanceList(parkId, centerCode, options);
|
|
385
400
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
386
401
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiSurveillanceList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
387
402
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -438,7 +453,7 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
438
453
|
* @throws {RequiredError}
|
|
439
454
|
*/
|
|
440
455
|
openApiEquipmentBatchAdd(requestParameters, options) {
|
|
441
|
-
return localVarFp.openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(axios, basePath));
|
|
456
|
+
return localVarFp.openApiEquipmentBatchAdd(requestParameters.parkId, requestParameters.syncEquipmentVo, options).then((request) => request(axios, basePath));
|
|
442
457
|
},
|
|
443
458
|
/**
|
|
444
459
|
*
|
|
@@ -448,7 +463,7 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
448
463
|
* @throws {RequiredError}
|
|
449
464
|
*/
|
|
450
465
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
451
|
-
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
466
|
+
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.parkId, requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
452
467
|
},
|
|
453
468
|
/**
|
|
454
469
|
*
|
|
@@ -458,7 +473,7 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
458
473
|
* @throws {RequiredError}
|
|
459
474
|
*/
|
|
460
475
|
openApiSurveillanceList(requestParameters, options) {
|
|
461
|
-
return localVarFp.openApiSurveillanceList(requestParameters.
|
|
476
|
+
return localVarFp.openApiSurveillanceList(requestParameters.parkId, requestParameters.centerCode, options).then((request) => request(axios, basePath));
|
|
462
477
|
},
|
|
463
478
|
/**
|
|
464
479
|
*
|
|
@@ -499,7 +514,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
499
514
|
* @memberof OpenApiApi
|
|
500
515
|
*/
|
|
501
516
|
openApiEquipmentBatchAdd(requestParameters, options) {
|
|
502
|
-
return OpenApiApiFp(this.configuration).openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(this.axios, this.basePath));
|
|
517
|
+
return OpenApiApiFp(this.configuration).openApiEquipmentBatchAdd(requestParameters.parkId, requestParameters.syncEquipmentVo, options).then((request) => request(this.axios, this.basePath));
|
|
503
518
|
}
|
|
504
519
|
/**
|
|
505
520
|
*
|
|
@@ -510,7 +525,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
510
525
|
* @memberof OpenApiApi
|
|
511
526
|
*/
|
|
512
527
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
513
|
-
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
528
|
+
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.parkId, requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
514
529
|
}
|
|
515
530
|
/**
|
|
516
531
|
*
|
|
@@ -521,7 +536,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
521
536
|
* @memberof OpenApiApi
|
|
522
537
|
*/
|
|
523
538
|
openApiSurveillanceList(requestParameters, options) {
|
|
524
|
-
return OpenApiApiFp(this.configuration).openApiSurveillanceList(requestParameters.
|
|
539
|
+
return OpenApiApiFp(this.configuration).openApiSurveillanceList(requestParameters.parkId, requestParameters.centerCode, options).then((request) => request(this.axios, this.basePath));
|
|
525
540
|
}
|
|
526
541
|
/**
|
|
527
542
|
*
|
|
@@ -37,34 +37,34 @@ export interface GetUserWx200Response {
|
|
|
37
37
|
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {string}
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'contentType'?: string;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
47
|
* @memberof GetUserWx200Response
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'contentLength'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @type {
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
59
59
|
* @memberof GetUserWx200Response
|
|
60
60
|
*/
|
|
61
|
-
'
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @type {
|
|
64
|
+
* @type {number}
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
|
-
'
|
|
67
|
+
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -19,7 +19,5 @@ export declare const LoginTypeEnum: {
|
|
|
19
19
|
readonly Applet: "APPLET";
|
|
20
20
|
readonly App: "APP";
|
|
21
21
|
readonly H5: "H5";
|
|
22
|
-
readonly HWorkPc: "H_WORK_PC";
|
|
23
|
-
readonly HWorkApp: "H_WORK_APP";
|
|
24
22
|
};
|
|
25
23
|
export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
|
|
@@ -17,11 +17,11 @@ import type { EquipmentStatus } from './equipment-status';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentStatusVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 中心编码(C码)
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentStatusVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'centerCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统
|
|
27
27
|
* @type {string}
|
|
@@ -17,11 +17,11 @@ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 中心编码(C码)
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'centerCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统 [资产:FAM]
|
|
27
27
|
* @type {string}
|
|
@@ -356,12 +356,6 @@ export interface SysUser {
|
|
|
356
356
|
* @memberof SysUser
|
|
357
357
|
*/
|
|
358
358
|
'supplierId'?: number;
|
|
359
|
-
/**
|
|
360
|
-
* 第三方系统用户编号
|
|
361
|
-
* @type {string}
|
|
362
|
-
* @memberof SysUser
|
|
363
|
-
*/
|
|
364
|
-
'userNo'?: string;
|
|
365
359
|
/**
|
|
366
360
|
* 用户附件
|
|
367
361
|
* @type {Array<SysUserAttachmentInfo>}
|
|
@@ -37,34 +37,34 @@ export interface GetUserWx200Response {
|
|
|
37
37
|
'trailerFields'?: object;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
|
-
* @type {
|
|
40
|
+
* @type {string}
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
|
-
'
|
|
43
|
+
'contentType'?: string;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {number}
|
|
47
47
|
* @memberof GetUserWx200Response
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'contentLength'?: number;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
53
53
|
* @memberof GetUserWx200Response
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
|
-
* @type {
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
59
59
|
* @memberof GetUserWx200Response
|
|
60
60
|
*/
|
|
61
|
-
'
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
62
|
/**
|
|
63
63
|
*
|
|
64
|
-
* @type {
|
|
64
|
+
* @type {number}
|
|
65
65
|
* @memberof GetUserWx200Response
|
|
66
66
|
*/
|
|
67
|
-
'
|
|
67
|
+
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -19,7 +19,5 @@ export declare const LoginTypeEnum: {
|
|
|
19
19
|
readonly Applet: "APPLET";
|
|
20
20
|
readonly App: "APP";
|
|
21
21
|
readonly H5: "H5";
|
|
22
|
-
readonly HWorkPc: "H_WORK_PC";
|
|
23
|
-
readonly HWorkApp: "H_WORK_APP";
|
|
24
22
|
};
|
|
25
23
|
export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
|
|
@@ -17,11 +17,11 @@ import type { EquipmentStatus } from './equipment-status';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentStatusVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 中心编码(C码)
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentStatusVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'centerCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统
|
|
27
27
|
* @type {string}
|
|
@@ -17,11 +17,11 @@ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 中心编码(C码)
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'centerCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统 [资产:FAM]
|
|
27
27
|
* @type {string}
|
|
@@ -356,12 +356,6 @@ export interface SysUser {
|
|
|
356
356
|
* @memberof SysUser
|
|
357
357
|
*/
|
|
358
358
|
'supplierId'?: number;
|
|
359
|
-
/**
|
|
360
|
-
* 第三方系统用户编号
|
|
361
|
-
* @type {string}
|
|
362
|
-
* @memberof SysUser
|
|
363
|
-
*/
|
|
364
|
-
'userNo'?: string;
|
|
365
359
|
/**
|
|
366
360
|
* 用户附件
|
|
367
361
|
* @type {Array<SysUserAttachmentInfo>}
|
|
@@ -46,34 +46,34 @@ export interface GetUserWx200Response {
|
|
|
46
46
|
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {string}
|
|
50
50
|
* @memberof GetUserWx200Response
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'contentType'?: string;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof GetUserWx200Response
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'contentLength'?: number;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
|
-
* @type {
|
|
61
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
62
62
|
* @memberof GetUserWx200Response
|
|
63
63
|
*/
|
|
64
|
-
'
|
|
64
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
|
-
* @type {
|
|
67
|
+
* @type {GetUserWx200ResponseLocale}
|
|
68
68
|
* @memberof GetUserWx200Response
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {number}
|
|
74
74
|
* @memberof GetUserWx200Response
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'bufferSize'?: number;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
|
@@ -43,23 +43,23 @@ export interface IPageAccessVO {
|
|
|
43
43
|
'records'?: Array<AccessVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageAccessVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
|
-
* @deprecated
|
|
55
54
|
*/
|
|
56
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
57
56
|
/**
|
|
58
57
|
*
|
|
59
58
|
* @type {boolean}
|
|
60
59
|
* @memberof IPageAccessVO
|
|
60
|
+
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'hitCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|