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