@gizone/rrs-client 4.2.0-alpha.284 → 4.2.0-alpha.285
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 +2 -0
- package/apis/common-api.ts +88 -0
- package/dist/apis/common-api.d.ts +43 -0
- package/dist/apis/common-api.js +67 -0
- package/dist/esm/apis/common-api.d.ts +43 -0
- package/dist/esm/apis/common-api.js +67 -0
- package/dist/esm/models/address-region-entity.d.ts +42 -0
- package/dist/esm/models/address-region-entity.js +14 -0
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/esm/models/json-result-list-address-region-entity.d.ts +62 -0
- package/dist/esm/models/json-result-list-address-region-entity.js +14 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/address-region-entity.d.ts +42 -0
- package/dist/models/address-region-entity.js +15 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/json-result-list-address-region-entity.d.ts +62 -0
- package/dist/models/json-result-list-address-region-entity.js +15 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/models/address-region-entity.ts +48 -0
- package/models/index.ts +2 -0
- package/models/json-result-list-address-region-entity.ts +72 -0
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -41,6 +41,7 @@ common.ts
|
|
|
41
41
|
configuration.ts
|
|
42
42
|
git_push.sh
|
|
43
43
|
index.ts
|
|
44
|
+
models/address-region-entity.ts
|
|
44
45
|
models/admission-terms-record-add-bo.ts
|
|
45
46
|
models/admission-terms-record-details-dto.ts
|
|
46
47
|
models/admission-terms-record-list-dto.ts
|
|
@@ -150,6 +151,7 @@ models/json-result-group-dept-vo.ts
|
|
|
150
151
|
models/json-result-inspection-standard-entity.ts
|
|
151
152
|
models/json-result-integer.ts
|
|
152
153
|
models/json-result-json-result-list-space-tree-dto.ts
|
|
154
|
+
models/json-result-list-address-region-entity.ts
|
|
153
155
|
models/json-result-list-applet-sys-user-drop-down-box-list-dto.ts
|
|
154
156
|
models/json-result-list-area-park-dto.ts
|
|
155
157
|
models/json-result-list-calendar-entity.ts
|
package/apis/common-api.ts
CHANGED
|
@@ -26,6 +26,8 @@ import type { JsonResult } from '../models';
|
|
|
26
26
|
// @ts-ignore
|
|
27
27
|
import type { JsonResultFileDTO } from '../models';
|
|
28
28
|
// @ts-ignore
|
|
29
|
+
import type { JsonResultListAddressRegionEntity } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
29
31
|
import type { JsonResultListCenterListDTO } from '../models';
|
|
30
32
|
// @ts-ignore
|
|
31
33
|
import type { JsonResultListParkListDTO } from '../models';
|
|
@@ -69,6 +71,46 @@ import type { UserBatchImportUploadRequest } from '../models';
|
|
|
69
71
|
*/
|
|
70
72
|
export const CommonApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
71
73
|
return {
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @param {number} pid
|
|
77
|
+
* @param {*} [options] Override http request option.
|
|
78
|
+
* @throws {RequiredError}
|
|
79
|
+
*/
|
|
80
|
+
addressRegionList: async (pid: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
81
|
+
// verify required parameter 'pid' is not null or undefined
|
|
82
|
+
assertParamExists('addressRegionList', 'pid', pid)
|
|
83
|
+
const localVarPath = `/address/list`;
|
|
84
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
86
|
+
let baseOptions;
|
|
87
|
+
if (configuration) {
|
|
88
|
+
baseOptions = configuration.baseOptions;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
92
|
+
const localVarHeaderParameter = {} as any;
|
|
93
|
+
const localVarQueryParameter = {} as any;
|
|
94
|
+
|
|
95
|
+
// authentication tokenScheme required
|
|
96
|
+
// http bearer authentication required
|
|
97
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
98
|
+
|
|
99
|
+
if (pid !== undefined) {
|
|
100
|
+
localVarQueryParameter['pid'] = pid;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
106
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
107
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
108
|
+
|
|
109
|
+
return {
|
|
110
|
+
url: toPathString(localVarUrlObj),
|
|
111
|
+
options: localVarRequestOptions,
|
|
112
|
+
};
|
|
113
|
+
},
|
|
72
114
|
/**
|
|
73
115
|
*
|
|
74
116
|
* @summary 删除文件
|
|
@@ -1796,6 +1838,18 @@ export const CommonApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1796
1838
|
export const CommonApiFp = function(configuration?: Configuration) {
|
|
1797
1839
|
const localVarAxiosParamCreator = CommonApiAxiosParamCreator(configuration)
|
|
1798
1840
|
return {
|
|
1841
|
+
/**
|
|
1842
|
+
*
|
|
1843
|
+
* @param {number} pid
|
|
1844
|
+
* @param {*} [options] Override http request option.
|
|
1845
|
+
* @throws {RequiredError}
|
|
1846
|
+
*/
|
|
1847
|
+
async addressRegionList(pid: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListAddressRegionEntity>> {
|
|
1848
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addressRegionList(pid, options);
|
|
1849
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1850
|
+
const localVarOperationServerBasePath = operationServerMap['CommonApi.addressRegionList']?.[localVarOperationServerIndex]?.url;
|
|
1851
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1852
|
+
},
|
|
1799
1853
|
/**
|
|
1800
1854
|
*
|
|
1801
1855
|
* @summary 删除文件
|
|
@@ -2342,6 +2396,15 @@ export const CommonApiFp = function(configuration?: Configuration) {
|
|
|
2342
2396
|
export const CommonApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
2343
2397
|
const localVarFp = CommonApiFp(configuration)
|
|
2344
2398
|
return {
|
|
2399
|
+
/**
|
|
2400
|
+
*
|
|
2401
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
2402
|
+
* @param {*} [options] Override http request option.
|
|
2403
|
+
* @throws {RequiredError}
|
|
2404
|
+
*/
|
|
2405
|
+
addressRegionList(requestParameters: CommonApiAddressRegionListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListAddressRegionEntity> {
|
|
2406
|
+
return localVarFp.addressRegionList(requestParameters.pid, options).then((request) => request(axios, basePath));
|
|
2407
|
+
},
|
|
2345
2408
|
/**
|
|
2346
2409
|
*
|
|
2347
2410
|
* @summary 删除文件
|
|
@@ -2747,6 +2810,20 @@ export const CommonApiFactory = function (configuration?: Configuration, basePat
|
|
|
2747
2810
|
};
|
|
2748
2811
|
};
|
|
2749
2812
|
|
|
2813
|
+
/**
|
|
2814
|
+
* Request parameters for addressRegionList operation in CommonApi.
|
|
2815
|
+
* @export
|
|
2816
|
+
* @interface CommonApiAddressRegionListRequest
|
|
2817
|
+
*/
|
|
2818
|
+
export interface CommonApiAddressRegionListRequest {
|
|
2819
|
+
/**
|
|
2820
|
+
*
|
|
2821
|
+
* @type {number}
|
|
2822
|
+
* @memberof CommonApiAddressRegionList
|
|
2823
|
+
*/
|
|
2824
|
+
readonly pid: number
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2750
2827
|
/**
|
|
2751
2828
|
* Request parameters for commonDeleteFile operation in CommonApi.
|
|
2752
2829
|
* @export
|
|
@@ -3349,6 +3426,17 @@ export interface CommonApiUploadPrivacyRequest {
|
|
|
3349
3426
|
* @extends {BaseAPI}
|
|
3350
3427
|
*/
|
|
3351
3428
|
export class CommonApi extends BaseAPI {
|
|
3429
|
+
/**
|
|
3430
|
+
*
|
|
3431
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
3432
|
+
* @param {*} [options] Override http request option.
|
|
3433
|
+
* @throws {RequiredError}
|
|
3434
|
+
* @memberof CommonApi
|
|
3435
|
+
*/
|
|
3436
|
+
public addressRegionList(requestParameters: CommonApiAddressRegionListRequest, options?: RawAxiosRequestConfig) {
|
|
3437
|
+
return CommonApiFp(this.configuration).addressRegionList(requestParameters.pid, options).then((request) => request(this.axios, this.basePath));
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3352
3440
|
/**
|
|
3353
3441
|
*
|
|
3354
3442
|
* @summary 删除文件
|
|
@@ -14,6 +14,7 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { JsonResult } from '../models';
|
|
16
16
|
import type { JsonResultFileDTO } from '../models';
|
|
17
|
+
import type { JsonResultListAddressRegionEntity } from '../models';
|
|
17
18
|
import type { JsonResultListCenterListDTO } from '../models';
|
|
18
19
|
import type { JsonResultListParkListDTO } from '../models';
|
|
19
20
|
import type { JsonResultListSysDept } from '../models';
|
|
@@ -38,6 +39,13 @@ import type { UserBatchImportUploadRequest } from '../models';
|
|
|
38
39
|
* @export
|
|
39
40
|
*/
|
|
40
41
|
export declare const CommonApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @param {number} pid
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
addressRegionList: (pid: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
49
|
/**
|
|
42
50
|
*
|
|
43
51
|
* @summary 删除文件
|
|
@@ -365,6 +373,13 @@ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
365
373
|
* @export
|
|
366
374
|
*/
|
|
367
375
|
export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
* @param {number} pid
|
|
379
|
+
* @param {*} [options] Override http request option.
|
|
380
|
+
* @throws {RequiredError}
|
|
381
|
+
*/
|
|
382
|
+
addressRegionList(pid: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListAddressRegionEntity>>;
|
|
368
383
|
/**
|
|
369
384
|
*
|
|
370
385
|
* @summary 删除文件
|
|
@@ -734,6 +749,13 @@ export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
|
734
749
|
* @export
|
|
735
750
|
*/
|
|
736
751
|
export declare const CommonApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
752
|
+
/**
|
|
753
|
+
*
|
|
754
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
755
|
+
* @param {*} [options] Override http request option.
|
|
756
|
+
* @throws {RequiredError}
|
|
757
|
+
*/
|
|
758
|
+
addressRegionList(requestParameters: CommonApiAddressRegionListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListAddressRegionEntity>;
|
|
737
759
|
/**
|
|
738
760
|
*
|
|
739
761
|
* @summary 删除文件
|
|
@@ -1093,6 +1115,19 @@ export declare const CommonApiFactory: (configuration?: Configuration, basePath?
|
|
|
1093
1115
|
*/
|
|
1094
1116
|
uploadPrivacy(requestParameters?: CommonApiUploadPrivacyRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
|
|
1095
1117
|
};
|
|
1118
|
+
/**
|
|
1119
|
+
* Request parameters for addressRegionList operation in CommonApi.
|
|
1120
|
+
* @export
|
|
1121
|
+
* @interface CommonApiAddressRegionListRequest
|
|
1122
|
+
*/
|
|
1123
|
+
export interface CommonApiAddressRegionListRequest {
|
|
1124
|
+
/**
|
|
1125
|
+
*
|
|
1126
|
+
* @type {number}
|
|
1127
|
+
* @memberof CommonApiAddressRegionList
|
|
1128
|
+
*/
|
|
1129
|
+
readonly pid: number;
|
|
1130
|
+
}
|
|
1096
1131
|
/**
|
|
1097
1132
|
* Request parameters for commonDeleteFile operation in CommonApi.
|
|
1098
1133
|
* @export
|
|
@@ -1650,6 +1685,14 @@ export interface CommonApiUploadPrivacyRequest {
|
|
|
1650
1685
|
* @extends {BaseAPI}
|
|
1651
1686
|
*/
|
|
1652
1687
|
export declare class CommonApi extends BaseAPI {
|
|
1688
|
+
/**
|
|
1689
|
+
*
|
|
1690
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
1691
|
+
* @param {*} [options] Override http request option.
|
|
1692
|
+
* @throws {RequiredError}
|
|
1693
|
+
* @memberof CommonApi
|
|
1694
|
+
*/
|
|
1695
|
+
addressRegionList(requestParameters: CommonApiAddressRegionListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListAddressRegionEntity, any>>;
|
|
1653
1696
|
/**
|
|
1654
1697
|
*
|
|
1655
1698
|
* @summary 删除文件
|
package/dist/apis/common-api.js
CHANGED
|
@@ -35,6 +35,39 @@ const base_1 = require("../base");
|
|
|
35
35
|
*/
|
|
36
36
|
const CommonApiAxiosParamCreator = function (configuration) {
|
|
37
37
|
return {
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @param {number} pid
|
|
41
|
+
* @param {*} [options] Override http request option.
|
|
42
|
+
* @throws {RequiredError}
|
|
43
|
+
*/
|
|
44
|
+
addressRegionList: (pid_1, ...args_1) => __awaiter(this, [pid_1, ...args_1], void 0, function* (pid, options = {}) {
|
|
45
|
+
// verify required parameter 'pid' is not null or undefined
|
|
46
|
+
(0, common_1.assertParamExists)('addressRegionList', 'pid', pid);
|
|
47
|
+
const localVarPath = `/address/list`;
|
|
48
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
49
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
50
|
+
let baseOptions;
|
|
51
|
+
if (configuration) {
|
|
52
|
+
baseOptions = configuration.baseOptions;
|
|
53
|
+
}
|
|
54
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
55
|
+
const localVarHeaderParameter = {};
|
|
56
|
+
const localVarQueryParameter = {};
|
|
57
|
+
// authentication tokenScheme required
|
|
58
|
+
// http bearer authentication required
|
|
59
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
60
|
+
if (pid !== undefined) {
|
|
61
|
+
localVarQueryParameter['pid'] = pid;
|
|
62
|
+
}
|
|
63
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
64
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
65
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
66
|
+
return {
|
|
67
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
68
|
+
options: localVarRequestOptions,
|
|
69
|
+
};
|
|
70
|
+
}),
|
|
38
71
|
/**
|
|
39
72
|
*
|
|
40
73
|
* @summary 删除文件
|
|
@@ -1468,6 +1501,21 @@ exports.CommonApiAxiosParamCreator = CommonApiAxiosParamCreator;
|
|
|
1468
1501
|
const CommonApiFp = function (configuration) {
|
|
1469
1502
|
const localVarAxiosParamCreator = (0, exports.CommonApiAxiosParamCreator)(configuration);
|
|
1470
1503
|
return {
|
|
1504
|
+
/**
|
|
1505
|
+
*
|
|
1506
|
+
* @param {number} pid
|
|
1507
|
+
* @param {*} [options] Override http request option.
|
|
1508
|
+
* @throws {RequiredError}
|
|
1509
|
+
*/
|
|
1510
|
+
addressRegionList(pid, options) {
|
|
1511
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1512
|
+
var _a, _b, _c;
|
|
1513
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.addressRegionList(pid, options);
|
|
1514
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1515
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CommonApi.addressRegionList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1516
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1517
|
+
});
|
|
1518
|
+
},
|
|
1471
1519
|
/**
|
|
1472
1520
|
*
|
|
1473
1521
|
* @summary 删除文件
|
|
@@ -2143,6 +2191,15 @@ exports.CommonApiFp = CommonApiFp;
|
|
|
2143
2191
|
const CommonApiFactory = function (configuration, basePath, axios) {
|
|
2144
2192
|
const localVarFp = (0, exports.CommonApiFp)(configuration);
|
|
2145
2193
|
return {
|
|
2194
|
+
/**
|
|
2195
|
+
*
|
|
2196
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
2197
|
+
* @param {*} [options] Override http request option.
|
|
2198
|
+
* @throws {RequiredError}
|
|
2199
|
+
*/
|
|
2200
|
+
addressRegionList(requestParameters, options) {
|
|
2201
|
+
return localVarFp.addressRegionList(requestParameters.pid, options).then((request) => request(axios, basePath));
|
|
2202
|
+
},
|
|
2146
2203
|
/**
|
|
2147
2204
|
*
|
|
2148
2205
|
* @summary 删除文件
|
|
@@ -2555,6 +2612,16 @@ exports.CommonApiFactory = CommonApiFactory;
|
|
|
2555
2612
|
* @extends {BaseAPI}
|
|
2556
2613
|
*/
|
|
2557
2614
|
class CommonApi extends base_1.BaseAPI {
|
|
2615
|
+
/**
|
|
2616
|
+
*
|
|
2617
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
2618
|
+
* @param {*} [options] Override http request option.
|
|
2619
|
+
* @throws {RequiredError}
|
|
2620
|
+
* @memberof CommonApi
|
|
2621
|
+
*/
|
|
2622
|
+
addressRegionList(requestParameters, options) {
|
|
2623
|
+
return (0, exports.CommonApiFp)(this.configuration).addressRegionList(requestParameters.pid, options).then((request) => request(this.axios, this.basePath));
|
|
2624
|
+
}
|
|
2558
2625
|
/**
|
|
2559
2626
|
*
|
|
2560
2627
|
* @summary 删除文件
|
|
@@ -14,6 +14,7 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { JsonResult } from '../models';
|
|
16
16
|
import type { JsonResultFileDTO } from '../models';
|
|
17
|
+
import type { JsonResultListAddressRegionEntity } from '../models';
|
|
17
18
|
import type { JsonResultListCenterListDTO } from '../models';
|
|
18
19
|
import type { JsonResultListParkListDTO } from '../models';
|
|
19
20
|
import type { JsonResultListSysDept } from '../models';
|
|
@@ -38,6 +39,13 @@ import type { UserBatchImportUploadRequest } from '../models';
|
|
|
38
39
|
* @export
|
|
39
40
|
*/
|
|
40
41
|
export declare const CommonApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @param {number} pid
|
|
45
|
+
* @param {*} [options] Override http request option.
|
|
46
|
+
* @throws {RequiredError}
|
|
47
|
+
*/
|
|
48
|
+
addressRegionList: (pid: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
49
|
/**
|
|
42
50
|
*
|
|
43
51
|
* @summary 删除文件
|
|
@@ -365,6 +373,13 @@ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
365
373
|
* @export
|
|
366
374
|
*/
|
|
367
375
|
export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
* @param {number} pid
|
|
379
|
+
* @param {*} [options] Override http request option.
|
|
380
|
+
* @throws {RequiredError}
|
|
381
|
+
*/
|
|
382
|
+
addressRegionList(pid: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListAddressRegionEntity>>;
|
|
368
383
|
/**
|
|
369
384
|
*
|
|
370
385
|
* @summary 删除文件
|
|
@@ -734,6 +749,13 @@ export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
|
734
749
|
* @export
|
|
735
750
|
*/
|
|
736
751
|
export declare const CommonApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
752
|
+
/**
|
|
753
|
+
*
|
|
754
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
755
|
+
* @param {*} [options] Override http request option.
|
|
756
|
+
* @throws {RequiredError}
|
|
757
|
+
*/
|
|
758
|
+
addressRegionList(requestParameters: CommonApiAddressRegionListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListAddressRegionEntity>;
|
|
737
759
|
/**
|
|
738
760
|
*
|
|
739
761
|
* @summary 删除文件
|
|
@@ -1093,6 +1115,19 @@ export declare const CommonApiFactory: (configuration?: Configuration, basePath?
|
|
|
1093
1115
|
*/
|
|
1094
1116
|
uploadPrivacy(requestParameters?: CommonApiUploadPrivacyRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResult>;
|
|
1095
1117
|
};
|
|
1118
|
+
/**
|
|
1119
|
+
* Request parameters for addressRegionList operation in CommonApi.
|
|
1120
|
+
* @export
|
|
1121
|
+
* @interface CommonApiAddressRegionListRequest
|
|
1122
|
+
*/
|
|
1123
|
+
export interface CommonApiAddressRegionListRequest {
|
|
1124
|
+
/**
|
|
1125
|
+
*
|
|
1126
|
+
* @type {number}
|
|
1127
|
+
* @memberof CommonApiAddressRegionList
|
|
1128
|
+
*/
|
|
1129
|
+
readonly pid: number;
|
|
1130
|
+
}
|
|
1096
1131
|
/**
|
|
1097
1132
|
* Request parameters for commonDeleteFile operation in CommonApi.
|
|
1098
1133
|
* @export
|
|
@@ -1650,6 +1685,14 @@ export interface CommonApiUploadPrivacyRequest {
|
|
|
1650
1685
|
* @extends {BaseAPI}
|
|
1651
1686
|
*/
|
|
1652
1687
|
export declare class CommonApi extends BaseAPI {
|
|
1688
|
+
/**
|
|
1689
|
+
*
|
|
1690
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
1691
|
+
* @param {*} [options] Override http request option.
|
|
1692
|
+
* @throws {RequiredError}
|
|
1693
|
+
* @memberof CommonApi
|
|
1694
|
+
*/
|
|
1695
|
+
addressRegionList(requestParameters: CommonApiAddressRegionListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListAddressRegionEntity, any>>;
|
|
1653
1696
|
/**
|
|
1654
1697
|
*
|
|
1655
1698
|
* @summary 删除文件
|
|
@@ -32,6 +32,39 @@ import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
|
32
32
|
*/
|
|
33
33
|
export const CommonApiAxiosParamCreator = function (configuration) {
|
|
34
34
|
return {
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @param {number} pid
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @throws {RequiredError}
|
|
40
|
+
*/
|
|
41
|
+
addressRegionList: (pid_1, ...args_1) => __awaiter(this, [pid_1, ...args_1], void 0, function* (pid, options = {}) {
|
|
42
|
+
// verify required parameter 'pid' is not null or undefined
|
|
43
|
+
assertParamExists('addressRegionList', 'pid', pid);
|
|
44
|
+
const localVarPath = `/address/list`;
|
|
45
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
46
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
47
|
+
let baseOptions;
|
|
48
|
+
if (configuration) {
|
|
49
|
+
baseOptions = configuration.baseOptions;
|
|
50
|
+
}
|
|
51
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
52
|
+
const localVarHeaderParameter = {};
|
|
53
|
+
const localVarQueryParameter = {};
|
|
54
|
+
// authentication tokenScheme required
|
|
55
|
+
// http bearer authentication required
|
|
56
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
57
|
+
if (pid !== undefined) {
|
|
58
|
+
localVarQueryParameter['pid'] = pid;
|
|
59
|
+
}
|
|
60
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
61
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
62
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
63
|
+
return {
|
|
64
|
+
url: toPathString(localVarUrlObj),
|
|
65
|
+
options: localVarRequestOptions,
|
|
66
|
+
};
|
|
67
|
+
}),
|
|
35
68
|
/**
|
|
36
69
|
*
|
|
37
70
|
* @summary 删除文件
|
|
@@ -1464,6 +1497,21 @@ export const CommonApiAxiosParamCreator = function (configuration) {
|
|
|
1464
1497
|
export const CommonApiFp = function (configuration) {
|
|
1465
1498
|
const localVarAxiosParamCreator = CommonApiAxiosParamCreator(configuration);
|
|
1466
1499
|
return {
|
|
1500
|
+
/**
|
|
1501
|
+
*
|
|
1502
|
+
* @param {number} pid
|
|
1503
|
+
* @param {*} [options] Override http request option.
|
|
1504
|
+
* @throws {RequiredError}
|
|
1505
|
+
*/
|
|
1506
|
+
addressRegionList(pid, options) {
|
|
1507
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1508
|
+
var _a, _b, _c;
|
|
1509
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.addressRegionList(pid, options);
|
|
1510
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1511
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CommonApi.addressRegionList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1512
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1513
|
+
});
|
|
1514
|
+
},
|
|
1467
1515
|
/**
|
|
1468
1516
|
*
|
|
1469
1517
|
* @summary 删除文件
|
|
@@ -2138,6 +2186,15 @@ export const CommonApiFp = function (configuration) {
|
|
|
2138
2186
|
export const CommonApiFactory = function (configuration, basePath, axios) {
|
|
2139
2187
|
const localVarFp = CommonApiFp(configuration);
|
|
2140
2188
|
return {
|
|
2189
|
+
/**
|
|
2190
|
+
*
|
|
2191
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
2192
|
+
* @param {*} [options] Override http request option.
|
|
2193
|
+
* @throws {RequiredError}
|
|
2194
|
+
*/
|
|
2195
|
+
addressRegionList(requestParameters, options) {
|
|
2196
|
+
return localVarFp.addressRegionList(requestParameters.pid, options).then((request) => request(axios, basePath));
|
|
2197
|
+
},
|
|
2141
2198
|
/**
|
|
2142
2199
|
*
|
|
2143
2200
|
* @summary 删除文件
|
|
@@ -2549,6 +2606,16 @@ export const CommonApiFactory = function (configuration, basePath, axios) {
|
|
|
2549
2606
|
* @extends {BaseAPI}
|
|
2550
2607
|
*/
|
|
2551
2608
|
export class CommonApi extends BaseAPI {
|
|
2609
|
+
/**
|
|
2610
|
+
*
|
|
2611
|
+
* @param {CommonApiAddressRegionListRequest} requestParameters Request parameters.
|
|
2612
|
+
* @param {*} [options] Override http request option.
|
|
2613
|
+
* @throws {RequiredError}
|
|
2614
|
+
* @memberof CommonApi
|
|
2615
|
+
*/
|
|
2616
|
+
addressRegionList(requestParameters, options) {
|
|
2617
|
+
return CommonApiFp(this.configuration).addressRegionList(requestParameters.pid, options).then((request) => request(this.axios, this.basePath));
|
|
2618
|
+
}
|
|
2552
2619
|
/**
|
|
2553
2620
|
*
|
|
2554
2621
|
* @summary 删除文件
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 返回数据,可以是任意类型的值
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AddressRegionEntity
|
|
16
|
+
*/
|
|
17
|
+
export interface AddressRegionEntity {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AddressRegionEntity
|
|
22
|
+
*/
|
|
23
|
+
'id'?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AddressRegionEntity
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof AddressRegionEntity
|
|
34
|
+
*/
|
|
35
|
+
'pid'?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof AddressRegionEntity
|
|
40
|
+
*/
|
|
41
|
+
'level'?: number;
|
|
42
|
+
}
|
|
@@ -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 {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './address-region-entity';
|
|
1
2
|
export * from './admission-terms-record-add-bo';
|
|
2
3
|
export * from './admission-terms-record-details-dto';
|
|
3
4
|
export * from './admission-terms-record-list-dto';
|
|
@@ -107,6 +108,7 @@ export * from './json-result-group-dept-vo';
|
|
|
107
108
|
export * from './json-result-inspection-standard-entity';
|
|
108
109
|
export * from './json-result-integer';
|
|
109
110
|
export * from './json-result-json-result-list-space-tree-dto';
|
|
111
|
+
export * from './json-result-list-address-region-entity';
|
|
110
112
|
export * from './json-result-list-applet-sys-user-drop-down-box-list-dto';
|
|
111
113
|
export * from './json-result-list-area-park-dto';
|
|
112
114
|
export * from './json-result-list-calendar-entity';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './address-region-entity';
|
|
1
2
|
export * from './admission-terms-record-add-bo';
|
|
2
3
|
export * from './admission-terms-record-details-dto';
|
|
3
4
|
export * from './admission-terms-record-list-dto';
|
|
@@ -107,6 +108,7 @@ export * from './json-result-group-dept-vo';
|
|
|
107
108
|
export * from './json-result-inspection-standard-entity';
|
|
108
109
|
export * from './json-result-integer';
|
|
109
110
|
export * from './json-result-json-result-list-space-tree-dto';
|
|
111
|
+
export * from './json-result-list-address-region-entity';
|
|
110
112
|
export * from './json-result-list-applet-sys-user-drop-down-box-list-dto';
|
|
111
113
|
export * from './json-result-list-area-park-dto';
|
|
112
114
|
export * from './json-result-list-calendar-entity';
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { AddressRegionEntity } from './address-region-entity';
|
|
13
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListAddressRegionEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListAddressRegionEntity {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<AddressRegionEntity>}
|
|
41
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<AddressRegionEntity> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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 {};
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {number}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cuserId'?: number;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {string}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cid'?: string;
|
|
383
383
|
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* 返回数据,可以是任意类型的值
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AddressRegionEntity
|
|
16
|
+
*/
|
|
17
|
+
export interface AddressRegionEntity {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AddressRegionEntity
|
|
22
|
+
*/
|
|
23
|
+
'id'?: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AddressRegionEntity
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof AddressRegionEntity
|
|
34
|
+
*/
|
|
35
|
+
'pid'?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof AddressRegionEntity
|
|
40
|
+
*/
|
|
41
|
+
'level'?: number;
|
|
42
|
+
}
|
|
@@ -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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './address-region-entity';
|
|
1
2
|
export * from './admission-terms-record-add-bo';
|
|
2
3
|
export * from './admission-terms-record-details-dto';
|
|
3
4
|
export * from './admission-terms-record-list-dto';
|
|
@@ -107,6 +108,7 @@ export * from './json-result-group-dept-vo';
|
|
|
107
108
|
export * from './json-result-inspection-standard-entity';
|
|
108
109
|
export * from './json-result-integer';
|
|
109
110
|
export * from './json-result-json-result-list-space-tree-dto';
|
|
111
|
+
export * from './json-result-list-address-region-entity';
|
|
110
112
|
export * from './json-result-list-applet-sys-user-drop-down-box-list-dto';
|
|
111
113
|
export * from './json-result-list-area-park-dto';
|
|
112
114
|
export * from './json-result-list-calendar-entity';
|
package/dist/models/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./address-region-entity"), exports);
|
|
17
18
|
__exportStar(require("./admission-terms-record-add-bo"), exports);
|
|
18
19
|
__exportStar(require("./admission-terms-record-details-dto"), exports);
|
|
19
20
|
__exportStar(require("./admission-terms-record-list-dto"), exports);
|
|
@@ -123,6 +124,7 @@ __exportStar(require("./json-result-group-dept-vo"), exports);
|
|
|
123
124
|
__exportStar(require("./json-result-inspection-standard-entity"), exports);
|
|
124
125
|
__exportStar(require("./json-result-integer"), exports);
|
|
125
126
|
__exportStar(require("./json-result-json-result-list-space-tree-dto"), exports);
|
|
127
|
+
__exportStar(require("./json-result-list-address-region-entity"), exports);
|
|
126
128
|
__exportStar(require("./json-result-list-applet-sys-user-drop-down-box-list-dto"), exports);
|
|
127
129
|
__exportStar(require("./json-result-list-area-park-dto"), exports);
|
|
128
130
|
__exportStar(require("./json-result-list-calendar-entity"), exports);
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { AddressRegionEntity } from './address-region-entity';
|
|
13
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultListAddressRegionEntity
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultListAddressRegionEntity {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
* 返回数据,可以是任意类型的值
|
|
40
|
+
* @type {Array<AddressRegionEntity>}
|
|
41
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
42
|
+
*/
|
|
43
|
+
'data'?: Array<AddressRegionEntity> | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -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 });
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {number}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cuserId'?: number;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {string}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cid'?: string;
|
|
383
383
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 返回数据,可以是任意类型的值
|
|
19
|
+
* @export
|
|
20
|
+
* @interface AddressRegionEntity
|
|
21
|
+
*/
|
|
22
|
+
export interface AddressRegionEntity {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof AddressRegionEntity
|
|
27
|
+
*/
|
|
28
|
+
'id'?: number;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof AddressRegionEntity
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof AddressRegionEntity
|
|
39
|
+
*/
|
|
40
|
+
'pid'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof AddressRegionEntity
|
|
45
|
+
*/
|
|
46
|
+
'level'?: number;
|
|
47
|
+
}
|
|
48
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from './address-region-entity';
|
|
1
2
|
export * from './admission-terms-record-add-bo';
|
|
2
3
|
export * from './admission-terms-record-details-dto';
|
|
3
4
|
export * from './admission-terms-record-list-dto';
|
|
@@ -107,6 +108,7 @@ export * from './json-result-group-dept-vo';
|
|
|
107
108
|
export * from './json-result-inspection-standard-entity';
|
|
108
109
|
export * from './json-result-integer';
|
|
109
110
|
export * from './json-result-json-result-list-space-tree-dto';
|
|
111
|
+
export * from './json-result-list-address-region-entity';
|
|
110
112
|
export * from './json-result-list-applet-sys-user-drop-down-box-list-dto';
|
|
111
113
|
export * from './json-result-list-area-park-dto';
|
|
112
114
|
export * from './json-result-list-calendar-entity';
|
|
@@ -0,0 +1,72 @@
|
|
|
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 { AddressRegionEntity } from './address-region-entity';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListAddressRegionEntity
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListAddressRegionEntity {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<AddressRegionEntity>}
|
|
50
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<AddressRegionEntity> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListAddressRegionEntity
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|
package/models/sys-user.ts
CHANGED
|
@@ -379,15 +379,15 @@ export interface SysUser {
|
|
|
379
379
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
380
380
|
/**
|
|
381
381
|
*
|
|
382
|
-
* @type {
|
|
382
|
+
* @type {number}
|
|
383
383
|
* @memberof SysUser
|
|
384
384
|
*/
|
|
385
|
-
'
|
|
385
|
+
'cuserId'?: number;
|
|
386
386
|
/**
|
|
387
387
|
*
|
|
388
|
-
* @type {
|
|
388
|
+
* @type {string}
|
|
389
389
|
* @memberof SysUser
|
|
390
390
|
*/
|
|
391
|
-
'
|
|
391
|
+
'cid'?: string;
|
|
392
392
|
}
|
|
393
393
|
|