@gizone/rrs-client 3.11.16-alpha.78 → 3.11.16-alpha.80

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.
@@ -560,6 +560,7 @@ export const EquipmentApiAxiosParamCreator = function (configuration?: Configura
560
560
  * @param {string} [supplierId] 供应商id
561
561
  * @param {string} [language] 语言类型
562
562
  * @param {string} [spaceId] 空间ID
563
+ * @param {string} [equipmentIds] 设备id
563
564
  * @param {ModelInteger} [page] 当前页码
564
565
  * @param {ModelInteger} [pageSize] 每页数量
565
566
  * @param {string} [searchValue]
@@ -571,7 +572,7 @@ export const EquipmentApiAxiosParamCreator = function (configuration?: Configura
571
572
  * @param {*} [options] Override http request option.
572
573
  * @throws {RequiredError}
573
574
  */
574
- equipmentListExport: async (equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
575
+ equipmentListExport: async (equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, equipmentIds?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
575
576
  const localVarPath = `/gizone/equipment/export`;
576
577
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
577
578
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -620,6 +621,10 @@ export const EquipmentApiAxiosParamCreator = function (configuration?: Configura
620
621
  localVarQueryParameter['spaceId'] = spaceId;
621
622
  }
622
623
 
624
+ if (equipmentIds !== undefined) {
625
+ localVarQueryParameter['equipmentIds'] = equipmentIds;
626
+ }
627
+
623
628
  if (page !== undefined) {
624
629
  for (const [key, value] of Object.entries(page)) {
625
630
  localVarQueryParameter[key] = value;
@@ -1440,6 +1445,7 @@ export const EquipmentApiFp = function(configuration?: Configuration) {
1440
1445
  * @param {string} [supplierId] 供应商id
1441
1446
  * @param {string} [language] 语言类型
1442
1447
  * @param {string} [spaceId] 空间ID
1448
+ * @param {string} [equipmentIds] 设备id
1443
1449
  * @param {ModelInteger} [page] 当前页码
1444
1450
  * @param {ModelInteger} [pageSize] 每页数量
1445
1451
  * @param {string} [searchValue]
@@ -1451,8 +1457,8 @@ export const EquipmentApiFp = function(configuration?: Configuration) {
1451
1457
  * @param {*} [options] Override http request option.
1452
1458
  * @throws {RequiredError}
1453
1459
  */
1454
- async equipmentListExport(equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1455
- const localVarAxiosArgs = await localVarAxiosParamCreator.equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
1460
+ async equipmentListExport(equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, equipmentIds?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1461
+ const localVarAxiosArgs = await localVarAxiosParamCreator.equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
1456
1462
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1457
1463
  const localVarOperationServerBasePath = operationServerMap['EquipmentApi.equipmentListExport']?.[localVarOperationServerIndex]?.url;
1458
1464
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1780,7 +1786,7 @@ export const EquipmentApiFactory = function (configuration?: Configuration, base
1780
1786
  * @throws {RequiredError}
1781
1787
  */
1782
1788
  equipmentListExport(requestParameters: EquipmentApiEquipmentListExportRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
1783
- return localVarFp.equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(axios, basePath));
1789
+ return localVarFp.equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.equipmentIds, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(axios, basePath));
1784
1790
  },
1785
1791
  /**
1786
1792
  *
@@ -2132,6 +2138,13 @@ export interface EquipmentApiEquipmentListExportRequest {
2132
2138
  */
2133
2139
  readonly spaceId?: string
2134
2140
 
2141
+ /**
2142
+ * 设备id
2143
+ * @type {string}
2144
+ * @memberof EquipmentApiEquipmentListExport
2145
+ */
2146
+ readonly equipmentIds?: string
2147
+
2135
2148
  /**
2136
2149
  * 当前页码
2137
2150
  * @type {ModelInteger}
@@ -2564,7 +2577,7 @@ export class EquipmentApi extends BaseAPI {
2564
2577
  * @memberof EquipmentApi
2565
2578
  */
2566
2579
  public equipmentListExport(requestParameters: EquipmentApiEquipmentListExportRequest = {}, options?: RawAxiosRequestConfig) {
2567
- return EquipmentApiFp(this.configuration).equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(this.axios, this.basePath));
2580
+ return EquipmentApiFp(this.configuration).equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.equipmentIds, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(this.axios, this.basePath));
2568
2581
  }
2569
2582
 
2570
2583
  /**
@@ -146,6 +146,7 @@ export declare const EquipmentApiAxiosParamCreator: (configuration?: Configurati
146
146
  * @param {string} [supplierId] 供应商id
147
147
  * @param {string} [language] 语言类型
148
148
  * @param {string} [spaceId] 空间ID
149
+ * @param {string} [equipmentIds] 设备id
149
150
  * @param {ModelInteger} [page] 当前页码
150
151
  * @param {ModelInteger} [pageSize] 每页数量
151
152
  * @param {string} [searchValue]
@@ -157,7 +158,7 @@ export declare const EquipmentApiAxiosParamCreator: (configuration?: Configurati
157
158
  * @param {*} [options] Override http request option.
158
159
  * @throws {RequiredError}
159
160
  */
160
- equipmentListExport: (equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
161
+ equipmentListExport: (equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, equipmentIds?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
161
162
  /**
162
163
  *
163
164
  * @summary 设备点位编辑
@@ -387,6 +388,7 @@ export declare const EquipmentApiFp: (configuration?: Configuration) => {
387
388
  * @param {string} [supplierId] 供应商id
388
389
  * @param {string} [language] 语言类型
389
390
  * @param {string} [spaceId] 空间ID
391
+ * @param {string} [equipmentIds] 设备id
390
392
  * @param {ModelInteger} [page] 当前页码
391
393
  * @param {ModelInteger} [pageSize] 每页数量
392
394
  * @param {string} [searchValue]
@@ -398,7 +400,7 @@ export declare const EquipmentApiFp: (configuration?: Configuration) => {
398
400
  * @param {*} [options] Override http request option.
399
401
  * @throws {RequiredError}
400
402
  */
401
- equipmentListExport(equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
403
+ equipmentListExport(equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, equipmentIds?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
402
404
  /**
403
405
  *
404
406
  * @summary 设备点位编辑
@@ -925,6 +927,12 @@ export interface EquipmentApiEquipmentListExportRequest {
925
927
  * @memberof EquipmentApiEquipmentListExport
926
928
  */
927
929
  readonly spaceId?: string;
930
+ /**
931
+ * 设备id
932
+ * @type {string}
933
+ * @memberof EquipmentApiEquipmentListExport
934
+ */
935
+ readonly equipmentIds?: string;
928
936
  /**
929
937
  * 当前页码
930
938
  * @type {ModelInteger}
@@ -439,6 +439,7 @@ const EquipmentApiAxiosParamCreator = function (configuration) {
439
439
  * @param {string} [supplierId] 供应商id
440
440
  * @param {string} [language] 语言类型
441
441
  * @param {string} [spaceId] 空间ID
442
+ * @param {string} [equipmentIds] 设备id
442
443
  * @param {ModelInteger} [page] 当前页码
443
444
  * @param {ModelInteger} [pageSize] 每页数量
444
445
  * @param {string} [searchValue]
@@ -450,7 +451,7 @@ const EquipmentApiAxiosParamCreator = function (configuration) {
450
451
  * @param {*} [options] Override http request option.
451
452
  * @throws {RequiredError}
452
453
  */
453
- equipmentListExport: (equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1) => __awaiter(this, [equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1], void 0, function* (equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options = {}) {
454
+ equipmentListExport: (equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, equipmentIds_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1) => __awaiter(this, [equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, equipmentIds_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1], void 0, function* (equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options = {}) {
454
455
  const localVarPath = `/gizone/equipment/export`;
455
456
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
456
457
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -488,6 +489,9 @@ const EquipmentApiAxiosParamCreator = function (configuration) {
488
489
  if (spaceId !== undefined) {
489
490
  localVarQueryParameter['spaceId'] = spaceId;
490
491
  }
492
+ if (equipmentIds !== undefined) {
493
+ localVarQueryParameter['equipmentIds'] = equipmentIds;
494
+ }
491
495
  if (page !== undefined) {
492
496
  for (const [key, value] of Object.entries(page)) {
493
497
  localVarQueryParameter[key] = value;
@@ -1231,6 +1235,7 @@ const EquipmentApiFp = function (configuration) {
1231
1235
  * @param {string} [supplierId] 供应商id
1232
1236
  * @param {string} [language] 语言类型
1233
1237
  * @param {string} [spaceId] 空间ID
1238
+ * @param {string} [equipmentIds] 设备id
1234
1239
  * @param {ModelInteger} [page] 当前页码
1235
1240
  * @param {ModelInteger} [pageSize] 每页数量
1236
1241
  * @param {string} [searchValue]
@@ -1242,10 +1247,10 @@ const EquipmentApiFp = function (configuration) {
1242
1247
  * @param {*} [options] Override http request option.
1243
1248
  * @throws {RequiredError}
1244
1249
  */
1245
- equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options) {
1250
+ equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options) {
1246
1251
  return __awaiter(this, void 0, void 0, function* () {
1247
1252
  var _a, _b, _c;
1248
- const localVarAxiosArgs = yield localVarAxiosParamCreator.equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
1253
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
1249
1254
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1250
1255
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EquipmentApi.equipmentListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1251
1256
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1616,7 +1621,7 @@ const EquipmentApiFactory = function (configuration, basePath, axios) {
1616
1621
  * @throws {RequiredError}
1617
1622
  */
1618
1623
  equipmentListExport(requestParameters = {}, options) {
1619
- return localVarFp.equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(axios, basePath));
1624
+ return localVarFp.equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.equipmentIds, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(axios, basePath));
1620
1625
  },
1621
1626
  /**
1622
1627
  *
@@ -1905,7 +1910,7 @@ class EquipmentApi extends base_1.BaseAPI {
1905
1910
  * @memberof EquipmentApi
1906
1911
  */
1907
1912
  equipmentListExport(requestParameters = {}, options) {
1908
- return (0, exports.EquipmentApiFp)(this.configuration).equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(this.axios, this.basePath));
1913
+ return (0, exports.EquipmentApiFp)(this.configuration).equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.equipmentIds, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(this.axios, this.basePath));
1909
1914
  }
1910
1915
  /**
1911
1916
  *
@@ -146,6 +146,7 @@ export declare const EquipmentApiAxiosParamCreator: (configuration?: Configurati
146
146
  * @param {string} [supplierId] 供应商id
147
147
  * @param {string} [language] 语言类型
148
148
  * @param {string} [spaceId] 空间ID
149
+ * @param {string} [equipmentIds] 设备id
149
150
  * @param {ModelInteger} [page] 当前页码
150
151
  * @param {ModelInteger} [pageSize] 每页数量
151
152
  * @param {string} [searchValue]
@@ -157,7 +158,7 @@ export declare const EquipmentApiAxiosParamCreator: (configuration?: Configurati
157
158
  * @param {*} [options] Override http request option.
158
159
  * @throws {RequiredError}
159
160
  */
160
- equipmentListExport: (equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
161
+ equipmentListExport: (equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, equipmentIds?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
161
162
  /**
162
163
  *
163
164
  * @summary 设备点位编辑
@@ -387,6 +388,7 @@ export declare const EquipmentApiFp: (configuration?: Configuration) => {
387
388
  * @param {string} [supplierId] 供应商id
388
389
  * @param {string} [language] 语言类型
389
390
  * @param {string} [spaceId] 空间ID
391
+ * @param {string} [equipmentIds] 设备id
390
392
  * @param {ModelInteger} [page] 当前页码
391
393
  * @param {ModelInteger} [pageSize] 每页数量
392
394
  * @param {string} [searchValue]
@@ -398,7 +400,7 @@ export declare const EquipmentApiFp: (configuration?: Configuration) => {
398
400
  * @param {*} [options] Override http request option.
399
401
  * @throws {RequiredError}
400
402
  */
401
- equipmentListExport(equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
403
+ equipmentListExport(equipmentName?: string, equipmentSystem?: string, equipmentLocation?: string, equipmentStatus?: string, parkId?: string, supplierId?: string, language?: string, spaceId?: string, equipmentIds?: string, page?: ModelInteger, pageSize?: ModelInteger, searchValue?: string, createBy?: string, createTime?: string, updateBy?: string, updateTime?: string, remark?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
402
404
  /**
403
405
  *
404
406
  * @summary 设备点位编辑
@@ -925,6 +927,12 @@ export interface EquipmentApiEquipmentListExportRequest {
925
927
  * @memberof EquipmentApiEquipmentListExport
926
928
  */
927
929
  readonly spaceId?: string;
930
+ /**
931
+ * 设备id
932
+ * @type {string}
933
+ * @memberof EquipmentApiEquipmentListExport
934
+ */
935
+ readonly equipmentIds?: string;
928
936
  /**
929
937
  * 当前页码
930
938
  * @type {ModelInteger}
@@ -436,6 +436,7 @@ export const EquipmentApiAxiosParamCreator = function (configuration) {
436
436
  * @param {string} [supplierId] 供应商id
437
437
  * @param {string} [language] 语言类型
438
438
  * @param {string} [spaceId] 空间ID
439
+ * @param {string} [equipmentIds] 设备id
439
440
  * @param {ModelInteger} [page] 当前页码
440
441
  * @param {ModelInteger} [pageSize] 每页数量
441
442
  * @param {string} [searchValue]
@@ -447,7 +448,7 @@ export const EquipmentApiAxiosParamCreator = function (configuration) {
447
448
  * @param {*} [options] Override http request option.
448
449
  * @throws {RequiredError}
449
450
  */
450
- equipmentListExport: (equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1) => __awaiter(this, [equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1], void 0, function* (equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options = {}) {
451
+ equipmentListExport: (equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, equipmentIds_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1) => __awaiter(this, [equipmentName_1, equipmentSystem_1, equipmentLocation_1, equipmentStatus_1, parkId_1, supplierId_1, language_1, spaceId_1, equipmentIds_1, page_1, pageSize_1, searchValue_1, createBy_1, createTime_1, updateBy_1, updateTime_1, remark_1, ...args_1], void 0, function* (equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options = {}) {
451
452
  const localVarPath = `/gizone/equipment/export`;
452
453
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
453
454
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -485,6 +486,9 @@ export const EquipmentApiAxiosParamCreator = function (configuration) {
485
486
  if (spaceId !== undefined) {
486
487
  localVarQueryParameter['spaceId'] = spaceId;
487
488
  }
489
+ if (equipmentIds !== undefined) {
490
+ localVarQueryParameter['equipmentIds'] = equipmentIds;
491
+ }
488
492
  if (page !== undefined) {
489
493
  for (const [key, value] of Object.entries(page)) {
490
494
  localVarQueryParameter[key] = value;
@@ -1227,6 +1231,7 @@ export const EquipmentApiFp = function (configuration) {
1227
1231
  * @param {string} [supplierId] 供应商id
1228
1232
  * @param {string} [language] 语言类型
1229
1233
  * @param {string} [spaceId] 空间ID
1234
+ * @param {string} [equipmentIds] 设备id
1230
1235
  * @param {ModelInteger} [page] 当前页码
1231
1236
  * @param {ModelInteger} [pageSize] 每页数量
1232
1237
  * @param {string} [searchValue]
@@ -1238,10 +1243,10 @@ export const EquipmentApiFp = function (configuration) {
1238
1243
  * @param {*} [options] Override http request option.
1239
1244
  * @throws {RequiredError}
1240
1245
  */
1241
- equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options) {
1246
+ equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options) {
1242
1247
  return __awaiter(this, void 0, void 0, function* () {
1243
1248
  var _a, _b, _c;
1244
- const localVarAxiosArgs = yield localVarAxiosParamCreator.equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
1249
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.equipmentListExport(equipmentName, equipmentSystem, equipmentLocation, equipmentStatus, parkId, supplierId, language, spaceId, equipmentIds, page, pageSize, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
1245
1250
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1246
1251
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EquipmentApi.equipmentListExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1247
1252
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1611,7 +1616,7 @@ export const EquipmentApiFactory = function (configuration, basePath, axios) {
1611
1616
  * @throws {RequiredError}
1612
1617
  */
1613
1618
  equipmentListExport(requestParameters = {}, options) {
1614
- return localVarFp.equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(axios, basePath));
1619
+ return localVarFp.equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.equipmentIds, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(axios, basePath));
1615
1620
  },
1616
1621
  /**
1617
1622
  *
@@ -1899,7 +1904,7 @@ export class EquipmentApi extends BaseAPI {
1899
1904
  * @memberof EquipmentApi
1900
1905
  */
1901
1906
  equipmentListExport(requestParameters = {}, options) {
1902
- return EquipmentApiFp(this.configuration).equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(this.axios, this.basePath));
1907
+ return EquipmentApiFp(this.configuration).equipmentListExport(requestParameters.equipmentName, requestParameters.equipmentSystem, requestParameters.equipmentLocation, requestParameters.equipmentStatus, requestParameters.parkId, requestParameters.supplierId, requestParameters.language, requestParameters.spaceId, requestParameters.equipmentIds, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.createBy, requestParameters.createTime, requestParameters.updateBy, requestParameters.updateTime, requestParameters.remark, options).then((request) => request(this.axios, this.basePath));
1903
1908
  }
1904
1909
  /**
1905
1910
  *
@@ -119,4 +119,10 @@ export interface EquipmentSearchVo {
119
119
  * @memberof EquipmentSearchVo
120
120
  */
121
121
  'spaceId'?: number;
122
+ /**
123
+ * 设备id
124
+ * @type {Array<number>}
125
+ * @memberof EquipmentSearchVo
126
+ */
127
+ 'equipmentIds'?: Array<number>;
122
128
  }
@@ -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}
@@ -24,10 +24,11 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {number}
27
+ * @type {boolean}
28
28
  * @memberof IPageAccessVO
29
+ * @deprecated
29
30
  */
30
- 'current'?: number;
31
+ 'hitCount'?: boolean;
31
32
  /**
32
33
  *
33
34
  * @type {Array<AccessVO>}
@@ -39,14 +40,13 @@ export interface IPageAccessVO {
39
40
  * @type {number}
40
41
  * @memberof IPageAccessVO
41
42
  */
42
- 'pages'?: number;
43
+ 'current'?: number;
43
44
  /**
44
45
  *
45
- * @type {boolean}
46
+ * @type {number}
46
47
  * @memberof IPageAccessVO
47
- * @deprecated
48
48
  */
49
- 'hitCount'?: boolean;
49
+ 'pages'?: number;
50
50
  /**
51
51
  *
52
52
  * @type {boolean}
@@ -119,4 +119,10 @@ export interface EquipmentSearchVo {
119
119
  * @memberof EquipmentSearchVo
120
120
  */
121
121
  'spaceId'?: number;
122
+ /**
123
+ * 设备id
124
+ * @type {Array<number>}
125
+ * @memberof EquipmentSearchVo
126
+ */
127
+ 'equipmentIds'?: Array<number>;
122
128
  }
@@ -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}
@@ -24,10 +24,11 @@ export interface IPageAccessVO {
24
24
  'total'?: number;
25
25
  /**
26
26
  *
27
- * @type {number}
27
+ * @type {boolean}
28
28
  * @memberof IPageAccessVO
29
+ * @deprecated
29
30
  */
30
- 'current'?: number;
31
+ 'hitCount'?: boolean;
31
32
  /**
32
33
  *
33
34
  * @type {Array<AccessVO>}
@@ -39,14 +40,13 @@ export interface IPageAccessVO {
39
40
  * @type {number}
40
41
  * @memberof IPageAccessVO
41
42
  */
42
- 'pages'?: number;
43
+ 'current'?: number;
43
44
  /**
44
45
  *
45
- * @type {boolean}
46
+ * @type {number}
46
47
  * @memberof IPageAccessVO
47
- * @deprecated
48
48
  */
49
- 'hitCount'?: boolean;
49
+ 'pages'?: number;
50
50
  /**
51
51
  *
52
52
  * @type {boolean}
@@ -122,5 +122,11 @@ export interface EquipmentSearchVo {
122
122
  * @memberof EquipmentSearchVo
123
123
  */
124
124
  'spaceId'?: number;
125
+ /**
126
+ * 设备id
127
+ * @type {Array<number>}
128
+ * @memberof EquipmentSearchVo
129
+ */
130
+ 'equipmentIds'?: Array<number>;
125
131
  }
126
132
 
@@ -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}
@@ -31,10 +31,11 @@ export interface IPageAccessVO {
31
31
  'total'?: number;
32
32
  /**
33
33
  *
34
- * @type {number}
34
+ * @type {boolean}
35
35
  * @memberof IPageAccessVO
36
+ * @deprecated
36
37
  */
37
- 'current'?: number;
38
+ 'hitCount'?: boolean;
38
39
  /**
39
40
  *
40
41
  * @type {Array<AccessVO>}
@@ -46,14 +47,13 @@ export interface IPageAccessVO {
46
47
  * @type {number}
47
48
  * @memberof IPageAccessVO
48
49
  */
49
- 'pages'?: number;
50
+ 'current'?: number;
50
51
  /**
51
52
  *
52
- * @type {boolean}
53
+ * @type {number}
53
54
  * @memberof IPageAccessVO
54
- * @deprecated
55
55
  */
56
- 'hitCount'?: boolean;
56
+ 'pages'?: number;
57
57
  /**
58
58
  *
59
59
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.16-alpha.78",
3
+ "version": "3.11.16-alpha.80",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {