@gizone/rrs-client 3.11.16-alpha.77 → 3.11.16-alpha.79

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.
Files changed (37) hide show
  1. package/.openapi-generator/FILES +0 -1
  2. package/apis/equipment-api.ts +18 -5
  3. package/apis/space-api.ts +25 -15
  4. package/dist/apis/equipment-api.d.ts +10 -2
  5. package/dist/apis/equipment-api.js +10 -5
  6. package/dist/apis/space-api.d.ts +14 -7
  7. package/dist/apis/space-api.js +16 -11
  8. package/dist/esm/apis/equipment-api.d.ts +10 -2
  9. package/dist/esm/apis/equipment-api.js +10 -5
  10. package/dist/esm/apis/space-api.d.ts +14 -7
  11. package/dist/esm/apis/space-api.js +16 -11
  12. package/dist/esm/models/equipment-search-vo.d.ts +6 -0
  13. package/dist/esm/models/get-user-wx200-response-output-stream.d.ts +4 -4
  14. package/dist/esm/models/index.d.ts +0 -1
  15. package/dist/esm/models/index.js +0 -1
  16. package/dist/esm/models/ipage-access-vo.d.ts +3 -3
  17. package/dist/esm/models/space-detail-dto.d.ts +2 -2
  18. package/dist/esm/models/space-point-dto.d.ts +3 -21
  19. package/dist/models/equipment-search-vo.d.ts +6 -0
  20. package/dist/models/get-user-wx200-response-output-stream.d.ts +4 -4
  21. package/dist/models/index.d.ts +0 -1
  22. package/dist/models/index.js +0 -1
  23. package/dist/models/ipage-access-vo.d.ts +3 -3
  24. package/dist/models/space-detail-dto.d.ts +2 -2
  25. package/dist/models/space-point-dto.d.ts +3 -21
  26. package/models/equipment-search-vo.ts +6 -0
  27. package/models/get-user-wx200-response-output-stream.ts +4 -4
  28. package/models/index.ts +0 -1
  29. package/models/ipage-access-vo.ts +3 -3
  30. package/models/space-detail-dto.ts +2 -2
  31. package/models/space-point-dto.ts +3 -21
  32. package/package.json +1 -1
  33. package/dist/esm/models/space-add-point-vo.d.ts +0 -31
  34. package/dist/esm/models/space-add-point-vo.js +0 -14
  35. package/dist/models/space-add-point-vo.d.ts +0 -31
  36. package/dist/models/space-add-point-vo.js +0 -15
  37. package/models/space-add-point-vo.ts +0 -39
@@ -763,7 +763,6 @@ models/source-feedback-dto.ts
763
763
  models/source-work-order-inspection-dto.ts
764
764
  models/space-add-excel-dto.ts
765
765
  models/space-add-plan-vo.ts
766
- models/space-add-point-vo.ts
767
766
  models/space-add-redis-list-dto.ts
768
767
  models/space-add-vo.ts
769
768
  models/space-detail-dto.ts
@@ -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
  /**
package/apis/space-api.ts CHANGED
@@ -40,8 +40,6 @@ import type { JsonResultSpaceImageDetailDTO } from '../models';
40
40
  // @ts-ignore
41
41
  import type { SpaceAddPlanVo } from '../models';
42
42
  // @ts-ignore
43
- import type { SpaceAddPointVO } from '../models';
44
- // @ts-ignore
45
43
  import type { SpaceAddVO } from '../models';
46
44
  // @ts-ignore
47
45
  import type { SpaceEditVO } from '../models';
@@ -719,14 +717,18 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
719
717
  /**
720
718
  *
721
719
  * @summary 空间标点
722
- * @param {SpaceAddPointVO} spaceAddPointVO
720
+ * @param {number} id
721
+ * @param {Array<Array<number>>} requestBody
723
722
  * @param {*} [options] Override http request option.
724
723
  * @throws {RequiredError}
725
724
  */
726
- spacePunctuation: async (spaceAddPointVO: SpaceAddPointVO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
727
- // verify required parameter 'spaceAddPointVO' is not null or undefined
728
- assertParamExists('spacePunctuation', 'spaceAddPointVO', spaceAddPointVO)
729
- const localVarPath = `/gizone/space/punctuation`;
725
+ spacePunctuation: async (id: number, requestBody: Array<Array<number>>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
726
+ // verify required parameter 'id' is not null or undefined
727
+ assertParamExists('spacePunctuation', 'id', id)
728
+ // verify required parameter 'requestBody' is not null or undefined
729
+ assertParamExists('spacePunctuation', 'requestBody', requestBody)
730
+ const localVarPath = `/gizone/space/point/{id}`
731
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
730
732
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
731
733
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
732
734
  let baseOptions;
@@ -749,7 +751,7 @@ export const SpaceApiAxiosParamCreator = function (configuration?: Configuration
749
751
  setSearchParams(localVarUrlObj, localVarQueryParameter);
750
752
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
751
753
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
752
- localVarRequestOptions.data = serializeDataIfNeeded(spaceAddPointVO, localVarRequestOptions, configuration)
754
+ localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
753
755
 
754
756
  return {
755
757
  url: toPathString(localVarUrlObj),
@@ -1135,12 +1137,13 @@ export const SpaceApiFp = function(configuration?: Configuration) {
1135
1137
  /**
1136
1138
  *
1137
1139
  * @summary 空间标点
1138
- * @param {SpaceAddPointVO} spaceAddPointVO
1140
+ * @param {number} id
1141
+ * @param {Array<Array<number>>} requestBody
1139
1142
  * @param {*} [options] Override http request option.
1140
1143
  * @throws {RequiredError}
1141
1144
  */
1142
- async spacePunctuation(spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1143
- const localVarAxiosArgs = await localVarAxiosParamCreator.spacePunctuation(spaceAddPointVO, options);
1145
+ async spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>> {
1146
+ const localVarAxiosArgs = await localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1144
1147
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1145
1148
  const localVarOperationServerBasePath = operationServerMap['SpaceApi.spacePunctuation']?.[localVarOperationServerIndex]?.url;
1146
1149
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1374,7 +1377,7 @@ export const SpaceApiFactory = function (configuration?: Configuration, basePath
1374
1377
  * @throws {RequiredError}
1375
1378
  */
1376
1379
  spacePunctuation(requestParameters: SpaceApiSpacePunctuationRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult> {
1377
- return localVarFp.spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(axios, basePath));
1380
+ return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1378
1381
  },
1379
1382
  /**
1380
1383
  *
@@ -1658,10 +1661,17 @@ export interface SpaceApiSpacePlanUrlListRequest {
1658
1661
  export interface SpaceApiSpacePunctuationRequest {
1659
1662
  /**
1660
1663
  *
1661
- * @type {SpaceAddPointVO}
1664
+ * @type {number}
1665
+ * @memberof SpaceApiSpacePunctuation
1666
+ */
1667
+ readonly id: number
1668
+
1669
+ /**
1670
+ *
1671
+ * @type {Array<Array<number>>}
1662
1672
  * @memberof SpaceApiSpacePunctuation
1663
1673
  */
1664
- readonly spaceAddPointVO: SpaceAddPointVO
1674
+ readonly requestBody: Array<Array<number>>
1665
1675
  }
1666
1676
 
1667
1677
  /**
@@ -1927,7 +1937,7 @@ export class SpaceApi extends BaseAPI {
1927
1937
  * @memberof SpaceApi
1928
1938
  */
1929
1939
  public spacePunctuation(requestParameters: SpaceApiSpacePunctuationRequest, options?: RawAxiosRequestConfig) {
1930
- return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(this.axios, this.basePath));
1940
+ return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1931
1941
  }
1932
1942
 
1933
1943
  /**
@@ -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
  *
@@ -21,7 +21,6 @@ import type { JsonResultListSpaceUrlDTO } from '../models';
21
21
  import type { JsonResultSpaceAddRedisListDTO } from '../models';
22
22
  import type { JsonResultSpaceImageDetailDTO } from '../models';
23
23
  import type { SpaceAddPlanVo } from '../models';
24
- import type { SpaceAddPointVO } from '../models';
25
24
  import type { SpaceAddVO } from '../models';
26
25
  import type { SpaceEditVO } from '../models';
27
26
  import type { SpaceQrCode } from '../models';
@@ -165,11 +164,12 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
165
164
  /**
166
165
  *
167
166
  * @summary 空间标点
168
- * @param {SpaceAddPointVO} spaceAddPointVO
167
+ * @param {number} id
168
+ * @param {Array<Array<number>>} requestBody
169
169
  * @param {*} [options] Override http request option.
170
170
  * @throws {RequiredError}
171
171
  */
172
- spacePunctuation: (spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
172
+ spacePunctuation: (id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
173
  /**
174
174
  *
175
175
  * @summary 批量生成二维码
@@ -341,11 +341,12 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
341
341
  /**
342
342
  *
343
343
  * @summary 空间标点
344
- * @param {SpaceAddPointVO} spaceAddPointVO
344
+ * @param {number} id
345
+ * @param {Array<Array<number>>} requestBody
345
346
  * @param {*} [options] Override http request option.
346
347
  * @throws {RequiredError}
347
348
  */
348
- spacePunctuation(spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
349
+ spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
349
350
  /**
350
351
  *
351
352
  * @summary 批量生成二维码
@@ -773,10 +774,16 @@ export interface SpaceApiSpacePlanUrlListRequest {
773
774
  export interface SpaceApiSpacePunctuationRequest {
774
775
  /**
775
776
  *
776
- * @type {SpaceAddPointVO}
777
+ * @type {number}
778
+ * @memberof SpaceApiSpacePunctuation
779
+ */
780
+ readonly id: number;
781
+ /**
782
+ *
783
+ * @type {Array<Array<number>>}
777
784
  * @memberof SpaceApiSpacePunctuation
778
785
  */
779
- readonly spaceAddPointVO: SpaceAddPointVO;
786
+ readonly requestBody: Array<Array<number>>;
780
787
  }
781
788
  /**
782
789
  * Request parameters for spaceQrCode operation in SpaceApi.
@@ -582,14 +582,18 @@ const SpaceApiAxiosParamCreator = function (configuration) {
582
582
  /**
583
583
  *
584
584
  * @summary 空间标点
585
- * @param {SpaceAddPointVO} spaceAddPointVO
585
+ * @param {number} id
586
+ * @param {Array<Array<number>>} requestBody
586
587
  * @param {*} [options] Override http request option.
587
588
  * @throws {RequiredError}
588
589
  */
589
- spacePunctuation: (spaceAddPointVO_1, ...args_1) => __awaiter(this, [spaceAddPointVO_1, ...args_1], void 0, function* (spaceAddPointVO, options = {}) {
590
- // verify required parameter 'spaceAddPointVO' is not null or undefined
591
- (0, common_1.assertParamExists)('spacePunctuation', 'spaceAddPointVO', spaceAddPointVO);
592
- const localVarPath = `/gizone/space/punctuation`;
590
+ spacePunctuation: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
591
+ // verify required parameter 'id' is not null or undefined
592
+ (0, common_1.assertParamExists)('spacePunctuation', 'id', id);
593
+ // verify required parameter 'requestBody' is not null or undefined
594
+ (0, common_1.assertParamExists)('spacePunctuation', 'requestBody', requestBody);
595
+ const localVarPath = `/gizone/space/point/{id}`
596
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
593
597
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
594
598
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
595
599
  let baseOptions;
@@ -606,7 +610,7 @@ const SpaceApiAxiosParamCreator = function (configuration) {
606
610
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
607
611
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
608
612
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
609
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(spaceAddPointVO, localVarRequestOptions, configuration);
613
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
610
614
  return {
611
615
  url: (0, common_1.toPathString)(localVarUrlObj),
612
616
  options: localVarRequestOptions,
@@ -1013,14 +1017,15 @@ const SpaceApiFp = function (configuration) {
1013
1017
  /**
1014
1018
  *
1015
1019
  * @summary 空间标点
1016
- * @param {SpaceAddPointVO} spaceAddPointVO
1020
+ * @param {number} id
1021
+ * @param {Array<Array<number>>} requestBody
1017
1022
  * @param {*} [options] Override http request option.
1018
1023
  * @throws {RequiredError}
1019
1024
  */
1020
- spacePunctuation(spaceAddPointVO, options) {
1025
+ spacePunctuation(id, requestBody, options) {
1021
1026
  return __awaiter(this, void 0, void 0, function* () {
1022
1027
  var _a, _b, _c;
1023
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(spaceAddPointVO, options);
1028
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1024
1029
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1025
1030
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SpaceApi.spacePunctuation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1026
1031
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1267,7 +1272,7 @@ const SpaceApiFactory = function (configuration, basePath, axios) {
1267
1272
  * @throws {RequiredError}
1268
1273
  */
1269
1274
  spacePunctuation(requestParameters, options) {
1270
- return localVarFp.spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(axios, basePath));
1275
+ return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1271
1276
  },
1272
1277
  /**
1273
1278
  *
@@ -1503,7 +1508,7 @@ class SpaceApi extends base_1.BaseAPI {
1503
1508
  * @memberof SpaceApi
1504
1509
  */
1505
1510
  spacePunctuation(requestParameters, options) {
1506
- return (0, exports.SpaceApiFp)(this.configuration).spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(this.axios, this.basePath));
1511
+ return (0, exports.SpaceApiFp)(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1507
1512
  }
1508
1513
  /**
1509
1514
  *
@@ -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
  *
@@ -21,7 +21,6 @@ import type { JsonResultListSpaceUrlDTO } from '../models';
21
21
  import type { JsonResultSpaceAddRedisListDTO } from '../models';
22
22
  import type { JsonResultSpaceImageDetailDTO } from '../models';
23
23
  import type { SpaceAddPlanVo } from '../models';
24
- import type { SpaceAddPointVO } from '../models';
25
24
  import type { SpaceAddVO } from '../models';
26
25
  import type { SpaceEditVO } from '../models';
27
26
  import type { SpaceQrCode } from '../models';
@@ -165,11 +164,12 @@ export declare const SpaceApiAxiosParamCreator: (configuration?: Configuration)
165
164
  /**
166
165
  *
167
166
  * @summary 空间标点
168
- * @param {SpaceAddPointVO} spaceAddPointVO
167
+ * @param {number} id
168
+ * @param {Array<Array<number>>} requestBody
169
169
  * @param {*} [options] Override http request option.
170
170
  * @throws {RequiredError}
171
171
  */
172
- spacePunctuation: (spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
172
+ spacePunctuation: (id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
173
173
  /**
174
174
  *
175
175
  * @summary 批量生成二维码
@@ -341,11 +341,12 @@ export declare const SpaceApiFp: (configuration?: Configuration) => {
341
341
  /**
342
342
  *
343
343
  * @summary 空间标点
344
- * @param {SpaceAddPointVO} spaceAddPointVO
344
+ * @param {number} id
345
+ * @param {Array<Array<number>>} requestBody
345
346
  * @param {*} [options] Override http request option.
346
347
  * @throws {RequiredError}
347
348
  */
348
- spacePunctuation(spaceAddPointVO: SpaceAddPointVO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
349
+ spacePunctuation(id: number, requestBody: Array<Array<number>>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResult>>;
349
350
  /**
350
351
  *
351
352
  * @summary 批量生成二维码
@@ -773,10 +774,16 @@ export interface SpaceApiSpacePlanUrlListRequest {
773
774
  export interface SpaceApiSpacePunctuationRequest {
774
775
  /**
775
776
  *
776
- * @type {SpaceAddPointVO}
777
+ * @type {number}
778
+ * @memberof SpaceApiSpacePunctuation
779
+ */
780
+ readonly id: number;
781
+ /**
782
+ *
783
+ * @type {Array<Array<number>>}
777
784
  * @memberof SpaceApiSpacePunctuation
778
785
  */
779
- readonly spaceAddPointVO: SpaceAddPointVO;
786
+ readonly requestBody: Array<Array<number>>;
780
787
  }
781
788
  /**
782
789
  * Request parameters for spaceQrCode operation in SpaceApi.
@@ -579,14 +579,18 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
579
579
  /**
580
580
  *
581
581
  * @summary 空间标点
582
- * @param {SpaceAddPointVO} spaceAddPointVO
582
+ * @param {number} id
583
+ * @param {Array<Array<number>>} requestBody
583
584
  * @param {*} [options] Override http request option.
584
585
  * @throws {RequiredError}
585
586
  */
586
- spacePunctuation: (spaceAddPointVO_1, ...args_1) => __awaiter(this, [spaceAddPointVO_1, ...args_1], void 0, function* (spaceAddPointVO, options = {}) {
587
- // verify required parameter 'spaceAddPointVO' is not null or undefined
588
- assertParamExists('spacePunctuation', 'spaceAddPointVO', spaceAddPointVO);
589
- const localVarPath = `/gizone/space/punctuation`;
587
+ spacePunctuation: (id_1, requestBody_1, ...args_1) => __awaiter(this, [id_1, requestBody_1, ...args_1], void 0, function* (id, requestBody, options = {}) {
588
+ // verify required parameter 'id' is not null or undefined
589
+ assertParamExists('spacePunctuation', 'id', id);
590
+ // verify required parameter 'requestBody' is not null or undefined
591
+ assertParamExists('spacePunctuation', 'requestBody', requestBody);
592
+ const localVarPath = `/gizone/space/point/{id}`
593
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
590
594
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
591
595
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
592
596
  let baseOptions;
@@ -603,7 +607,7 @@ export const SpaceApiAxiosParamCreator = function (configuration) {
603
607
  setSearchParams(localVarUrlObj, localVarQueryParameter);
604
608
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
605
609
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
606
- localVarRequestOptions.data = serializeDataIfNeeded(spaceAddPointVO, localVarRequestOptions, configuration);
610
+ localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration);
607
611
  return {
608
612
  url: toPathString(localVarUrlObj),
609
613
  options: localVarRequestOptions,
@@ -1009,14 +1013,15 @@ export const SpaceApiFp = function (configuration) {
1009
1013
  /**
1010
1014
  *
1011
1015
  * @summary 空间标点
1012
- * @param {SpaceAddPointVO} spaceAddPointVO
1016
+ * @param {number} id
1017
+ * @param {Array<Array<number>>} requestBody
1013
1018
  * @param {*} [options] Override http request option.
1014
1019
  * @throws {RequiredError}
1015
1020
  */
1016
- spacePunctuation(spaceAddPointVO, options) {
1021
+ spacePunctuation(id, requestBody, options) {
1017
1022
  return __awaiter(this, void 0, void 0, function* () {
1018
1023
  var _a, _b, _c;
1019
- const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(spaceAddPointVO, options);
1024
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.spacePunctuation(id, requestBody, options);
1020
1025
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1021
1026
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SpaceApi.spacePunctuation']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1022
1027
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1262,7 +1267,7 @@ export const SpaceApiFactory = function (configuration, basePath, axios) {
1262
1267
  * @throws {RequiredError}
1263
1268
  */
1264
1269
  spacePunctuation(requestParameters, options) {
1265
- return localVarFp.spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(axios, basePath));
1270
+ return localVarFp.spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(axios, basePath));
1266
1271
  },
1267
1272
  /**
1268
1273
  *
@@ -1497,7 +1502,7 @@ export class SpaceApi extends BaseAPI {
1497
1502
  * @memberof SpaceApi
1498
1503
  */
1499
1504
  spacePunctuation(requestParameters, options) {
1500
- return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.spaceAddPointVO, options).then((request) => request(this.axios, this.basePath));
1505
+ return SpaceApiFp(this.configuration).spacePunctuation(requestParameters.id, requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
1501
1506
  }
1502
1507
  /**
1503
1508
  *
@@ -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
  }
@@ -17,14 +17,14 @@
17
17
  export interface GetUserWx200ResponseOutputStream {
18
18
  /**
19
19
  *
20
- * @type {boolean}
20
+ * @type {object}
21
21
  * @memberof GetUserWx200ResponseOutputStream
22
22
  */
23
- 'ready'?: boolean;
23
+ 'writeListener'?: object;
24
24
  /**
25
25
  *
26
- * @type {object}
26
+ * @type {boolean}
27
27
  * @memberof GetUserWx200ResponseOutputStream
28
28
  */
29
- 'writeListener'?: object;
29
+ 'ready'?: boolean;
30
30
  }
@@ -703,7 +703,6 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
- export * from './space-add-point-vo';
707
706
  export * from './space-add-redis-list-dto';
708
707
  export * from './space-add-vo';
709
708
  export * from './space-detail-dto';
@@ -703,7 +703,6 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
- export * from './space-add-point-vo';
707
706
  export * from './space-add-redis-list-dto';
708
707
  export * from './space-add-vo';
709
708
  export * from './space-detail-dto';
@@ -44,15 +44,15 @@ export interface IPageAccessVO {
44
44
  *
45
45
  * @type {boolean}
46
46
  * @memberof IPageAccessVO
47
- * @deprecated
48
47
  */
49
- 'hitCount'?: boolean;
48
+ 'searchCount'?: boolean;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageAccessVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -79,10 +79,10 @@ export interface SpaceDetailDTO {
79
79
  'imageUrl'?: Array<string>;
80
80
  /**
81
81
  * 空间点位
82
- * @type {string}
82
+ * @type {Array<Array<number>>}
83
83
  * @memberof SpaceDetailDTO
84
84
  */
85
- 'spacePoint'?: string;
85
+ 'spacePoint'?: Array<Array<number>>;
86
86
  /**
87
87
  *
88
88
  * @type {SpacePointDTO}
@@ -16,29 +16,11 @@
16
16
  */
17
17
  export interface SpacePointDTO {
18
18
  /**
19
- *
20
- * @type {Array<string>}
21
- * @memberof SpacePointDTO
22
- */
23
- 'arrSlice'?: Array<string>;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof SpacePointDTO
28
- */
29
- 'origin'?: string;
30
- /**
31
- *
32
- * @type {number}
33
- * @memberof SpacePointDTO
34
- */
35
- 'containerWidth'?: number;
36
- /**
37
- *
38
- * @type {number}
19
+ * 空间id
20
+ * @type {Array<Array<number>>}
39
21
  * @memberof SpacePointDTO
40
22
  */
41
- 'containerHeight'?: number;
23
+ 'spacePoint'?: Array<Array<number>>;
42
24
  /**
43
25
  * 空间id
44
26
  * @type {number}
@@ -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
  }
@@ -17,14 +17,14 @@
17
17
  export interface GetUserWx200ResponseOutputStream {
18
18
  /**
19
19
  *
20
- * @type {boolean}
20
+ * @type {object}
21
21
  * @memberof GetUserWx200ResponseOutputStream
22
22
  */
23
- 'ready'?: boolean;
23
+ 'writeListener'?: object;
24
24
  /**
25
25
  *
26
- * @type {object}
26
+ * @type {boolean}
27
27
  * @memberof GetUserWx200ResponseOutputStream
28
28
  */
29
- 'writeListener'?: object;
29
+ 'ready'?: boolean;
30
30
  }
@@ -703,7 +703,6 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
- export * from './space-add-point-vo';
707
706
  export * from './space-add-redis-list-dto';
708
707
  export * from './space-add-vo';
709
708
  export * from './space-detail-dto';
@@ -719,7 +719,6 @@ __exportStar(require("./source-feedback-dto"), exports);
719
719
  __exportStar(require("./source-work-order-inspection-dto"), exports);
720
720
  __exportStar(require("./space-add-excel-dto"), exports);
721
721
  __exportStar(require("./space-add-plan-vo"), exports);
722
- __exportStar(require("./space-add-point-vo"), exports);
723
722
  __exportStar(require("./space-add-redis-list-dto"), exports);
724
723
  __exportStar(require("./space-add-vo"), exports);
725
724
  __exportStar(require("./space-detail-dto"), exports);
@@ -44,15 +44,15 @@ export interface IPageAccessVO {
44
44
  *
45
45
  * @type {boolean}
46
46
  * @memberof IPageAccessVO
47
- * @deprecated
48
47
  */
49
- 'hitCount'?: boolean;
48
+ 'searchCount'?: boolean;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageAccessVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -79,10 +79,10 @@ export interface SpaceDetailDTO {
79
79
  'imageUrl'?: Array<string>;
80
80
  /**
81
81
  * 空间点位
82
- * @type {string}
82
+ * @type {Array<Array<number>>}
83
83
  * @memberof SpaceDetailDTO
84
84
  */
85
- 'spacePoint'?: string;
85
+ 'spacePoint'?: Array<Array<number>>;
86
86
  /**
87
87
  *
88
88
  * @type {SpacePointDTO}
@@ -16,29 +16,11 @@
16
16
  */
17
17
  export interface SpacePointDTO {
18
18
  /**
19
- *
20
- * @type {Array<string>}
21
- * @memberof SpacePointDTO
22
- */
23
- 'arrSlice'?: Array<string>;
24
- /**
25
- *
26
- * @type {string}
27
- * @memberof SpacePointDTO
28
- */
29
- 'origin'?: string;
30
- /**
31
- *
32
- * @type {number}
33
- * @memberof SpacePointDTO
34
- */
35
- 'containerWidth'?: number;
36
- /**
37
- *
38
- * @type {number}
19
+ * 空间id
20
+ * @type {Array<Array<number>>}
39
21
  * @memberof SpacePointDTO
40
22
  */
41
- 'containerHeight'?: number;
23
+ 'spacePoint'?: Array<Array<number>>;
42
24
  /**
43
25
  * 空间id
44
26
  * @type {number}
@@ -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
 
@@ -22,15 +22,15 @@
22
22
  export interface GetUserWx200ResponseOutputStream {
23
23
  /**
24
24
  *
25
- * @type {boolean}
25
+ * @type {object}
26
26
  * @memberof GetUserWx200ResponseOutputStream
27
27
  */
28
- 'ready'?: boolean;
28
+ 'writeListener'?: object;
29
29
  /**
30
30
  *
31
- * @type {object}
31
+ * @type {boolean}
32
32
  * @memberof GetUserWx200ResponseOutputStream
33
33
  */
34
- 'writeListener'?: object;
34
+ 'ready'?: boolean;
35
35
  }
36
36
 
package/models/index.ts CHANGED
@@ -703,7 +703,6 @@ export * from './source-feedback-dto';
703
703
  export * from './source-work-order-inspection-dto';
704
704
  export * from './space-add-excel-dto';
705
705
  export * from './space-add-plan-vo';
706
- export * from './space-add-point-vo';
707
706
  export * from './space-add-redis-list-dto';
708
707
  export * from './space-add-vo';
709
708
  export * from './space-detail-dto';
@@ -51,15 +51,15 @@ export interface IPageAccessVO {
51
51
  *
52
52
  * @type {boolean}
53
53
  * @memberof IPageAccessVO
54
- * @deprecated
55
54
  */
56
- 'hitCount'?: boolean;
55
+ 'searchCount'?: boolean;
57
56
  /**
58
57
  *
59
58
  * @type {boolean}
60
59
  * @memberof IPageAccessVO
60
+ * @deprecated
61
61
  */
62
- 'searchCount'?: boolean;
62
+ 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -88,10 +88,10 @@ export interface SpaceDetailDTO {
88
88
  'imageUrl'?: Array<string>;
89
89
  /**
90
90
  * 空间点位
91
- * @type {string}
91
+ * @type {Array<Array<number>>}
92
92
  * @memberof SpaceDetailDTO
93
93
  */
94
- 'spacePoint'?: string;
94
+ 'spacePoint'?: Array<Array<number>>;
95
95
  /**
96
96
  *
97
97
  * @type {SpacePointDTO}
@@ -21,29 +21,11 @@
21
21
  */
22
22
  export interface SpacePointDTO {
23
23
  /**
24
- *
25
- * @type {Array<string>}
26
- * @memberof SpacePointDTO
27
- */
28
- 'arrSlice'?: Array<string>;
29
- /**
30
- *
31
- * @type {string}
32
- * @memberof SpacePointDTO
33
- */
34
- 'origin'?: string;
35
- /**
36
- *
37
- * @type {number}
38
- * @memberof SpacePointDTO
39
- */
40
- 'containerWidth'?: number;
41
- /**
42
- *
43
- * @type {number}
24
+ * 空间id
25
+ * @type {Array<Array<number>>}
44
26
  * @memberof SpacePointDTO
45
27
  */
46
- 'containerHeight'?: number;
28
+ 'spacePoint'?: Array<Array<number>>;
47
29
  /**
48
30
  * 空间id
49
31
  * @type {number}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "3.11.16-alpha.77",
3
+ "version": "3.11.16-alpha.79",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,31 +0,0 @@
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
- import type { SpacePointDTO } from './space-point-dto';
13
- /**
14
- * 空间标点参数
15
- * @export
16
- * @interface SpaceAddPointVO
17
- */
18
- export interface SpaceAddPointVO {
19
- /**
20
- * 空间id
21
- * @type {number}
22
- * @memberof SpaceAddPointVO
23
- */
24
- 'spaceId'?: number;
25
- /**
26
- *
27
- * @type {SpacePointDTO}
28
- * @memberof SpaceAddPointVO
29
- */
30
- 'spacePointDTO'?: SpacePointDTO;
31
- }
@@ -1,14 +0,0 @@
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 {};
@@ -1,31 +0,0 @@
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
- import type { SpacePointDTO } from './space-point-dto';
13
- /**
14
- * 空间标点参数
15
- * @export
16
- * @interface SpaceAddPointVO
17
- */
18
- export interface SpaceAddPointVO {
19
- /**
20
- * 空间id
21
- * @type {number}
22
- * @memberof SpaceAddPointVO
23
- */
24
- 'spaceId'?: number;
25
- /**
26
- *
27
- * @type {SpacePointDTO}
28
- * @memberof SpaceAddPointVO
29
- */
30
- 'spacePointDTO'?: SpacePointDTO;
31
- }
@@ -1,15 +0,0 @@
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 });
@@ -1,39 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * OpenAPI definition
5
- * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
- *
7
- * The version of the OpenAPI document: v0
8
- *
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import type { SpacePointDTO } from './space-point-dto';
19
-
20
- /**
21
- * 空间标点参数
22
- * @export
23
- * @interface SpaceAddPointVO
24
- */
25
- export interface SpaceAddPointVO {
26
- /**
27
- * 空间id
28
- * @type {number}
29
- * @memberof SpaceAddPointVO
30
- */
31
- 'spaceId'?: number;
32
- /**
33
- *
34
- * @type {SpacePointDTO}
35
- * @memberof SpaceAddPointVO
36
- */
37
- 'spacePointDTO'?: SpacePointDTO;
38
- }
39
-