@gizone/rrs-client 4.2.0-alpha.258 → 4.2.0-alpha.260
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/apis/common-api.ts +20 -5
- package/dist/apis/common-api.d.ts +11 -2
- package/dist/apis/common-api.js +10 -5
- package/dist/esm/apis/common-api.d.ts +11 -2
- package/dist/esm/apis/common-api.js +10 -5
- package/dist/esm/models/get-user-wx200-response.d.ts +6 -6
- package/dist/esm/models/park-list-dto.d.ts +12 -0
- package/dist/esm/models/plan-detail-dto.d.ts +7 -0
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/work-order-settings-type-enum.d.ts +1 -0
- package/dist/esm/models/work-order-settings-type-enum.js +2 -1
- package/dist/esm/models/work-order-type-enum.d.ts +1 -0
- package/dist/esm/models/work-order-type-enum.js +2 -1
- package/dist/models/get-user-wx200-response.d.ts +6 -6
- package/dist/models/park-list-dto.d.ts +12 -0
- package/dist/models/plan-detail-dto.d.ts +7 -0
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/work-order-settings-type-enum.d.ts +1 -0
- package/dist/models/work-order-settings-type-enum.js +2 -1
- package/dist/models/work-order-type-enum.d.ts +1 -0
- package/dist/models/work-order-type-enum.js +2 -1
- package/models/get-user-wx200-response.ts +6 -6
- package/models/park-list-dto.ts +12 -0
- package/models/plan-detail-dto.ts +9 -0
- package/models/sys-user.ts +4 -4
- package/models/work-order-settings-type-enum.ts +2 -1
- package/models/work-order-type-enum.ts +2 -1
- package/package.json +1 -1
package/apis/common-api.ts
CHANGED
|
@@ -46,6 +46,8 @@ import type { JsonResultSysDept } from '../models';
|
|
|
46
46
|
// @ts-ignore
|
|
47
47
|
import type { JsonResultVoid } from '../models';
|
|
48
48
|
// @ts-ignore
|
|
49
|
+
import type { ParkCenterAttributeEnum } from '../models';
|
|
50
|
+
// @ts-ignore
|
|
49
51
|
import type { ParkInfoEditVO } from '../models';
|
|
50
52
|
// @ts-ignore
|
|
51
53
|
import type { ParkPlatFormEnum } from '../models';
|
|
@@ -1598,10 +1600,11 @@ export const CommonApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1598
1600
|
* @summary 查询园区列表(无权限验证)
|
|
1599
1601
|
* @param {string} [centerCode] 中心编码
|
|
1600
1602
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
1603
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
1601
1604
|
* @param {*} [options] Override http request option.
|
|
1602
1605
|
* @throws {RequiredError}
|
|
1603
1606
|
*/
|
|
1604
|
-
selectParkList: async (centerCode?: string, isSrm?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1607
|
+
selectParkList: async (centerCode?: string, isSrm?: boolean, parkCenterAttribute?: ParkCenterAttributeEnum, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
1605
1608
|
const localVarPath = `/system/dept/park`;
|
|
1606
1609
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1607
1610
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1626,6 +1629,10 @@ export const CommonApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
1626
1629
|
localVarQueryParameter['isSrm'] = isSrm;
|
|
1627
1630
|
}
|
|
1628
1631
|
|
|
1632
|
+
if (parkCenterAttribute !== undefined) {
|
|
1633
|
+
localVarQueryParameter['parkCenterAttribute'] = parkCenterAttribute;
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1629
1636
|
|
|
1630
1637
|
|
|
1631
1638
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -2406,11 +2413,12 @@ export const CommonApiFp = function(configuration?: Configuration) {
|
|
|
2406
2413
|
* @summary 查询园区列表(无权限验证)
|
|
2407
2414
|
* @param {string} [centerCode] 中心编码
|
|
2408
2415
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
2416
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
2409
2417
|
* @param {*} [options] Override http request option.
|
|
2410
2418
|
* @throws {RequiredError}
|
|
2411
2419
|
*/
|
|
2412
|
-
async selectParkList(centerCode?: string, isSrm?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkListDTO>> {
|
|
2413
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.selectParkList(centerCode, isSrm, options);
|
|
2420
|
+
async selectParkList(centerCode?: string, isSrm?: boolean, parkCenterAttribute?: ParkCenterAttributeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkListDTO>> {
|
|
2421
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.selectParkList(centerCode, isSrm, parkCenterAttribute, options);
|
|
2414
2422
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2415
2423
|
const localVarOperationServerBasePath = operationServerMap['CommonApi.selectParkList']?.[localVarOperationServerIndex]?.url;
|
|
2416
2424
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2875,7 +2883,7 @@ export const CommonApiFactory = function (configuration?: Configuration, basePat
|
|
|
2875
2883
|
* @throws {RequiredError}
|
|
2876
2884
|
*/
|
|
2877
2885
|
selectParkList(requestParameters: CommonApiSelectParkListRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListParkListDTO> {
|
|
2878
|
-
return localVarFp.selectParkList(requestParameters.centerCode, requestParameters.isSrm, options).then((request) => request(axios, basePath));
|
|
2886
|
+
return localVarFp.selectParkList(requestParameters.centerCode, requestParameters.isSrm, requestParameters.parkCenterAttribute, options).then((request) => request(axios, basePath));
|
|
2879
2887
|
},
|
|
2880
2888
|
/**
|
|
2881
2889
|
*
|
|
@@ -3490,6 +3498,13 @@ export interface CommonApiSelectParkListRequest {
|
|
|
3490
3498
|
* @memberof CommonApiSelectParkList
|
|
3491
3499
|
*/
|
|
3492
3500
|
readonly isSrm?: boolean
|
|
3501
|
+
|
|
3502
|
+
/**
|
|
3503
|
+
* 园区属性
|
|
3504
|
+
* @type {ParkCenterAttributeEnum}
|
|
3505
|
+
* @memberof CommonApiSelectParkList
|
|
3506
|
+
*/
|
|
3507
|
+
readonly parkCenterAttribute?: ParkCenterAttributeEnum
|
|
3493
3508
|
}
|
|
3494
3509
|
|
|
3495
3510
|
/**
|
|
@@ -4037,7 +4052,7 @@ export class CommonApi extends BaseAPI {
|
|
|
4037
4052
|
* @memberof CommonApi
|
|
4038
4053
|
*/
|
|
4039
4054
|
public selectParkList(requestParameters: CommonApiSelectParkListRequest = {}, options?: RawAxiosRequestConfig) {
|
|
4040
|
-
return CommonApiFp(this.configuration).selectParkList(requestParameters.centerCode, requestParameters.isSrm, options).then((request) => request(this.axios, this.basePath));
|
|
4055
|
+
return CommonApiFp(this.configuration).selectParkList(requestParameters.centerCode, requestParameters.isSrm, requestParameters.parkCenterAttribute, options).then((request) => request(this.axios, this.basePath));
|
|
4041
4056
|
}
|
|
4042
4057
|
|
|
4043
4058
|
/**
|
|
@@ -24,6 +24,7 @@ import type { JsonResultParkSettingsDetailsDTO } from '../models';
|
|
|
24
24
|
import type { JsonResultString } from '../models';
|
|
25
25
|
import type { JsonResultSysDept } from '../models';
|
|
26
26
|
import type { JsonResultVoid } from '../models';
|
|
27
|
+
import type { ParkCenterAttributeEnum } from '../models';
|
|
27
28
|
import type { ParkInfoEditVO } from '../models';
|
|
28
29
|
import type { ParkPlatFormEnum } from '../models';
|
|
29
30
|
import type { ParkSettingsVO } from '../models';
|
|
@@ -327,10 +328,11 @@ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
327
328
|
* @summary 查询园区列表(无权限验证)
|
|
328
329
|
* @param {string} [centerCode] 中心编码
|
|
329
330
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
331
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
330
332
|
* @param {*} [options] Override http request option.
|
|
331
333
|
* @throws {RequiredError}
|
|
332
334
|
*/
|
|
333
|
-
selectParkList: (centerCode?: string, isSrm?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
335
|
+
selectParkList: (centerCode?: string, isSrm?: boolean, parkCenterAttribute?: ParkCenterAttributeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
334
336
|
/**
|
|
335
337
|
*
|
|
336
338
|
* @param {SysDept} sysDept
|
|
@@ -712,10 +714,11 @@ export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
|
712
714
|
* @summary 查询园区列表(无权限验证)
|
|
713
715
|
* @param {string} [centerCode] 中心编码
|
|
714
716
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
717
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
715
718
|
* @param {*} [options] Override http request option.
|
|
716
719
|
* @throws {RequiredError}
|
|
717
720
|
*/
|
|
718
|
-
selectParkList(centerCode?: string, isSrm?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkListDTO>>;
|
|
721
|
+
selectParkList(centerCode?: string, isSrm?: boolean, parkCenterAttribute?: ParkCenterAttributeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkListDTO>>;
|
|
719
722
|
/**
|
|
720
723
|
*
|
|
721
724
|
* @param {SysDept} sysDept
|
|
@@ -1667,6 +1670,12 @@ export interface CommonApiSelectParkListRequest {
|
|
|
1667
1670
|
* @memberof CommonApiSelectParkList
|
|
1668
1671
|
*/
|
|
1669
1672
|
readonly isSrm?: boolean;
|
|
1673
|
+
/**
|
|
1674
|
+
* 园区属性
|
|
1675
|
+
* @type {ParkCenterAttributeEnum}
|
|
1676
|
+
* @memberof CommonApiSelectParkList
|
|
1677
|
+
*/
|
|
1678
|
+
readonly parkCenterAttribute?: ParkCenterAttributeEnum;
|
|
1670
1679
|
}
|
|
1671
1680
|
/**
|
|
1672
1681
|
* Request parameters for updateDept operation in CommonApi.
|
package/dist/apis/common-api.js
CHANGED
|
@@ -1306,10 +1306,11 @@ const CommonApiAxiosParamCreator = function (configuration) {
|
|
|
1306
1306
|
* @summary 查询园区列表(无权限验证)
|
|
1307
1307
|
* @param {string} [centerCode] 中心编码
|
|
1308
1308
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
1309
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
1309
1310
|
* @param {*} [options] Override http request option.
|
|
1310
1311
|
* @throws {RequiredError}
|
|
1311
1312
|
*/
|
|
1312
|
-
selectParkList: (centerCode_1, isSrm_1, ...args_1) => __awaiter(this, [centerCode_1, isSrm_1, ...args_1], void 0, function* (centerCode, isSrm, options = {}) {
|
|
1313
|
+
selectParkList: (centerCode_1, isSrm_1, parkCenterAttribute_1, ...args_1) => __awaiter(this, [centerCode_1, isSrm_1, parkCenterAttribute_1, ...args_1], void 0, function* (centerCode, isSrm, parkCenterAttribute, options = {}) {
|
|
1313
1314
|
const localVarPath = `/system/dept/park`;
|
|
1314
1315
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1315
1316
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1329,6 +1330,9 @@ const CommonApiAxiosParamCreator = function (configuration) {
|
|
|
1329
1330
|
if (isSrm !== undefined) {
|
|
1330
1331
|
localVarQueryParameter['isSrm'] = isSrm;
|
|
1331
1332
|
}
|
|
1333
|
+
if (parkCenterAttribute !== undefined) {
|
|
1334
|
+
localVarQueryParameter['parkCenterAttribute'] = parkCenterAttribute;
|
|
1335
|
+
}
|
|
1332
1336
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1333
1337
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1334
1338
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -2170,13 +2174,14 @@ const CommonApiFp = function (configuration) {
|
|
|
2170
2174
|
* @summary 查询园区列表(无权限验证)
|
|
2171
2175
|
* @param {string} [centerCode] 中心编码
|
|
2172
2176
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
2177
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
2173
2178
|
* @param {*} [options] Override http request option.
|
|
2174
2179
|
* @throws {RequiredError}
|
|
2175
2180
|
*/
|
|
2176
|
-
selectParkList(centerCode, isSrm, options) {
|
|
2181
|
+
selectParkList(centerCode, isSrm, parkCenterAttribute, options) {
|
|
2177
2182
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2178
2183
|
var _a, _b, _c;
|
|
2179
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectParkList(centerCode, isSrm, options);
|
|
2184
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectParkList(centerCode, isSrm, parkCenterAttribute, options);
|
|
2180
2185
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2181
2186
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CommonApi.selectParkList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2182
2187
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2663,7 +2668,7 @@ const CommonApiFactory = function (configuration, basePath, axios) {
|
|
|
2663
2668
|
* @throws {RequiredError}
|
|
2664
2669
|
*/
|
|
2665
2670
|
selectParkList(requestParameters = {}, options) {
|
|
2666
|
-
return localVarFp.selectParkList(requestParameters.centerCode, requestParameters.isSrm, options).then((request) => request(axios, basePath));
|
|
2671
|
+
return localVarFp.selectParkList(requestParameters.centerCode, requestParameters.isSrm, requestParameters.parkCenterAttribute, options).then((request) => request(axios, basePath));
|
|
2667
2672
|
},
|
|
2668
2673
|
/**
|
|
2669
2674
|
*
|
|
@@ -3143,7 +3148,7 @@ class CommonApi extends base_1.BaseAPI {
|
|
|
3143
3148
|
* @memberof CommonApi
|
|
3144
3149
|
*/
|
|
3145
3150
|
selectParkList(requestParameters = {}, options) {
|
|
3146
|
-
return (0, exports.CommonApiFp)(this.configuration).selectParkList(requestParameters.centerCode, requestParameters.isSrm, options).then((request) => request(this.axios, this.basePath));
|
|
3151
|
+
return (0, exports.CommonApiFp)(this.configuration).selectParkList(requestParameters.centerCode, requestParameters.isSrm, requestParameters.parkCenterAttribute, options).then((request) => request(this.axios, this.basePath));
|
|
3147
3152
|
}
|
|
3148
3153
|
/**
|
|
3149
3154
|
*
|
|
@@ -24,6 +24,7 @@ import type { JsonResultParkSettingsDetailsDTO } from '../models';
|
|
|
24
24
|
import type { JsonResultString } from '../models';
|
|
25
25
|
import type { JsonResultSysDept } from '../models';
|
|
26
26
|
import type { JsonResultVoid } from '../models';
|
|
27
|
+
import type { ParkCenterAttributeEnum } from '../models';
|
|
27
28
|
import type { ParkInfoEditVO } from '../models';
|
|
28
29
|
import type { ParkPlatFormEnum } from '../models';
|
|
29
30
|
import type { ParkSettingsVO } from '../models';
|
|
@@ -327,10 +328,11 @@ export declare const CommonApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
327
328
|
* @summary 查询园区列表(无权限验证)
|
|
328
329
|
* @param {string} [centerCode] 中心编码
|
|
329
330
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
331
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
330
332
|
* @param {*} [options] Override http request option.
|
|
331
333
|
* @throws {RequiredError}
|
|
332
334
|
*/
|
|
333
|
-
selectParkList: (centerCode?: string, isSrm?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
335
|
+
selectParkList: (centerCode?: string, isSrm?: boolean, parkCenterAttribute?: ParkCenterAttributeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
334
336
|
/**
|
|
335
337
|
*
|
|
336
338
|
* @param {SysDept} sysDept
|
|
@@ -712,10 +714,11 @@ export declare const CommonApiFp: (configuration?: Configuration) => {
|
|
|
712
714
|
* @summary 查询园区列表(无权限验证)
|
|
713
715
|
* @param {string} [centerCode] 中心编码
|
|
714
716
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
717
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
715
718
|
* @param {*} [options] Override http request option.
|
|
716
719
|
* @throws {RequiredError}
|
|
717
720
|
*/
|
|
718
|
-
selectParkList(centerCode?: string, isSrm?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkListDTO>>;
|
|
721
|
+
selectParkList(centerCode?: string, isSrm?: boolean, parkCenterAttribute?: ParkCenterAttributeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListParkListDTO>>;
|
|
719
722
|
/**
|
|
720
723
|
*
|
|
721
724
|
* @param {SysDept} sysDept
|
|
@@ -1667,6 +1670,12 @@ export interface CommonApiSelectParkListRequest {
|
|
|
1667
1670
|
* @memberof CommonApiSelectParkList
|
|
1668
1671
|
*/
|
|
1669
1672
|
readonly isSrm?: boolean;
|
|
1673
|
+
/**
|
|
1674
|
+
* 园区属性
|
|
1675
|
+
* @type {ParkCenterAttributeEnum}
|
|
1676
|
+
* @memberof CommonApiSelectParkList
|
|
1677
|
+
*/
|
|
1678
|
+
readonly parkCenterAttribute?: ParkCenterAttributeEnum;
|
|
1670
1679
|
}
|
|
1671
1680
|
/**
|
|
1672
1681
|
* Request parameters for updateDept operation in CommonApi.
|
|
@@ -1303,10 +1303,11 @@ export const CommonApiAxiosParamCreator = function (configuration) {
|
|
|
1303
1303
|
* @summary 查询园区列表(无权限验证)
|
|
1304
1304
|
* @param {string} [centerCode] 中心编码
|
|
1305
1305
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
1306
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
1306
1307
|
* @param {*} [options] Override http request option.
|
|
1307
1308
|
* @throws {RequiredError}
|
|
1308
1309
|
*/
|
|
1309
|
-
selectParkList: (centerCode_1, isSrm_1, ...args_1) => __awaiter(this, [centerCode_1, isSrm_1, ...args_1], void 0, function* (centerCode, isSrm, options = {}) {
|
|
1310
|
+
selectParkList: (centerCode_1, isSrm_1, parkCenterAttribute_1, ...args_1) => __awaiter(this, [centerCode_1, isSrm_1, parkCenterAttribute_1, ...args_1], void 0, function* (centerCode, isSrm, parkCenterAttribute, options = {}) {
|
|
1310
1311
|
const localVarPath = `/system/dept/park`;
|
|
1311
1312
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1312
1313
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1326,6 +1327,9 @@ export const CommonApiAxiosParamCreator = function (configuration) {
|
|
|
1326
1327
|
if (isSrm !== undefined) {
|
|
1327
1328
|
localVarQueryParameter['isSrm'] = isSrm;
|
|
1328
1329
|
}
|
|
1330
|
+
if (parkCenterAttribute !== undefined) {
|
|
1331
|
+
localVarQueryParameter['parkCenterAttribute'] = parkCenterAttribute;
|
|
1332
|
+
}
|
|
1329
1333
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1330
1334
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1331
1335
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -2166,13 +2170,14 @@ export const CommonApiFp = function (configuration) {
|
|
|
2166
2170
|
* @summary 查询园区列表(无权限验证)
|
|
2167
2171
|
* @param {string} [centerCode] 中心编码
|
|
2168
2172
|
* @param {boolean} [isSrm] 是否查询srm数据
|
|
2173
|
+
* @param {ParkCenterAttributeEnum} [parkCenterAttribute] 园区属性
|
|
2169
2174
|
* @param {*} [options] Override http request option.
|
|
2170
2175
|
* @throws {RequiredError}
|
|
2171
2176
|
*/
|
|
2172
|
-
selectParkList(centerCode, isSrm, options) {
|
|
2177
|
+
selectParkList(centerCode, isSrm, parkCenterAttribute, options) {
|
|
2173
2178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2174
2179
|
var _a, _b, _c;
|
|
2175
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectParkList(centerCode, isSrm, options);
|
|
2180
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectParkList(centerCode, isSrm, parkCenterAttribute, options);
|
|
2176
2181
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2177
2182
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['CommonApi.selectParkList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2178
2183
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2658,7 +2663,7 @@ export const CommonApiFactory = function (configuration, basePath, axios) {
|
|
|
2658
2663
|
* @throws {RequiredError}
|
|
2659
2664
|
*/
|
|
2660
2665
|
selectParkList(requestParameters = {}, options) {
|
|
2661
|
-
return localVarFp.selectParkList(requestParameters.centerCode, requestParameters.isSrm, options).then((request) => request(axios, basePath));
|
|
2666
|
+
return localVarFp.selectParkList(requestParameters.centerCode, requestParameters.isSrm, requestParameters.parkCenterAttribute, options).then((request) => request(axios, basePath));
|
|
2662
2667
|
},
|
|
2663
2668
|
/**
|
|
2664
2669
|
*
|
|
@@ -3137,7 +3142,7 @@ export class CommonApi extends BaseAPI {
|
|
|
3137
3142
|
* @memberof CommonApi
|
|
3138
3143
|
*/
|
|
3139
3144
|
selectParkList(requestParameters = {}, options) {
|
|
3140
|
-
return CommonApiFp(this.configuration).selectParkList(requestParameters.centerCode, requestParameters.isSrm, options).then((request) => request(this.axios, this.basePath));
|
|
3145
|
+
return CommonApiFp(this.configuration).selectParkList(requestParameters.centerCode, requestParameters.isSrm, requestParameters.parkCenterAttribute, options).then((request) => request(this.axios, this.basePath));
|
|
3141
3146
|
}
|
|
3142
3147
|
/**
|
|
3143
3148
|
*
|
|
@@ -41,6 +41,12 @@ export interface GetUserWx200Response {
|
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
43
|
'locale'?: GetUserWx200ResponseLocale;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof GetUserWx200Response
|
|
48
|
+
*/
|
|
49
|
+
'bufferSize'?: number;
|
|
44
50
|
/**
|
|
45
51
|
*
|
|
46
52
|
* @type {string}
|
|
@@ -59,12 +65,6 @@ export interface GetUserWx200Response {
|
|
|
59
65
|
* @memberof GetUserWx200Response
|
|
60
66
|
*/
|
|
61
67
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {number}
|
|
65
|
-
* @memberof GetUserWx200Response
|
|
66
|
-
*/
|
|
67
|
-
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -51,4 +51,16 @@ export interface ParkListDTO {
|
|
|
51
51
|
* @memberof ParkListDTO
|
|
52
52
|
*/
|
|
53
53
|
'srmParkCode'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 经度
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ParkListDTO
|
|
58
|
+
*/
|
|
59
|
+
'longitude'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* 维度
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ParkListDTO
|
|
64
|
+
*/
|
|
65
|
+
'latitude'?: string;
|
|
54
66
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { PlanInspectionItemsDTO } from './plan-inspection-items-dto';
|
|
13
13
|
import type { PlanItemEditVo } from './plan-item-edit-vo';
|
|
14
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
14
15
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
15
16
|
/**
|
|
16
17
|
* 返回数据,可以是任意类型的值
|
|
@@ -102,6 +103,12 @@ export interface PlanDetailDTO {
|
|
|
102
103
|
* @memberof PlanDetailDTO
|
|
103
104
|
*/
|
|
104
105
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {PlanLevelEnum}
|
|
109
|
+
* @memberof PlanDetailDTO
|
|
110
|
+
*/
|
|
111
|
+
'planLevel'?: PlanLevelEnum;
|
|
105
112
|
}
|
|
106
113
|
export declare const PlanDetailDTOPlanTypeEnum: {
|
|
107
114
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
@@ -23,5 +23,6 @@ export declare const WorkOrderSettingsTypeEnum: {
|
|
|
23
23
|
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
24
24
|
readonly OfflineAlertWorkOrder: "OFFLINE_ALERT_WORK_ORDER";
|
|
25
25
|
readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
|
|
26
|
+
readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
|
|
26
27
|
};
|
|
27
28
|
export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
|
|
@@ -24,5 +24,6 @@ export const WorkOrderSettingsTypeEnum = {
|
|
|
24
24
|
NetworkMonitorRepairWorkOrder: 'NETWORK_MONITOR_REPAIR_WORK_ORDER',
|
|
25
25
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
26
26
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
27
|
-
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
27
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
28
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
28
29
|
};
|
|
@@ -34,5 +34,6 @@ export declare const WorkOrderTypeEnum: {
|
|
|
34
34
|
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
35
35
|
readonly OfflineAlertWorkOrder: "OFFLINE_ALERT_WORK_ORDER";
|
|
36
36
|
readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
|
|
37
|
+
readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
|
|
37
38
|
};
|
|
38
39
|
export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
|
|
@@ -35,5 +35,6 @@ export const WorkOrderTypeEnum = {
|
|
|
35
35
|
NetworkRepairWorkOrder: 'NETWORK_REPAIR_WORK_ORDER',
|
|
36
36
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
37
37
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
38
|
-
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
38
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
39
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
39
40
|
};
|
|
@@ -41,6 +41,12 @@ export interface GetUserWx200Response {
|
|
|
41
41
|
* @memberof GetUserWx200Response
|
|
42
42
|
*/
|
|
43
43
|
'locale'?: GetUserWx200ResponseLocale;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof GetUserWx200Response
|
|
48
|
+
*/
|
|
49
|
+
'bufferSize'?: number;
|
|
44
50
|
/**
|
|
45
51
|
*
|
|
46
52
|
* @type {string}
|
|
@@ -59,12 +65,6 @@ export interface GetUserWx200Response {
|
|
|
59
65
|
* @memberof GetUserWx200Response
|
|
60
66
|
*/
|
|
61
67
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {number}
|
|
65
|
-
* @memberof GetUserWx200Response
|
|
66
|
-
*/
|
|
67
|
-
'bufferSize'?: number;
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @type {string}
|
|
@@ -51,4 +51,16 @@ export interface ParkListDTO {
|
|
|
51
51
|
* @memberof ParkListDTO
|
|
52
52
|
*/
|
|
53
53
|
'srmParkCode'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* 经度
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ParkListDTO
|
|
58
|
+
*/
|
|
59
|
+
'longitude'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* 维度
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ParkListDTO
|
|
64
|
+
*/
|
|
65
|
+
'latitude'?: string;
|
|
54
66
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { PlanInspectionItemsDTO } from './plan-inspection-items-dto';
|
|
13
13
|
import type { PlanItemEditVo } from './plan-item-edit-vo';
|
|
14
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
14
15
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
15
16
|
/**
|
|
16
17
|
* 返回数据,可以是任意类型的值
|
|
@@ -102,6 +103,12 @@ export interface PlanDetailDTO {
|
|
|
102
103
|
* @memberof PlanDetailDTO
|
|
103
104
|
*/
|
|
104
105
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {PlanLevelEnum}
|
|
109
|
+
* @memberof PlanDetailDTO
|
|
110
|
+
*/
|
|
111
|
+
'planLevel'?: PlanLevelEnum;
|
|
105
112
|
}
|
|
106
113
|
export declare const PlanDetailDTOPlanTypeEnum: {
|
|
107
114
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {string}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cid'?: string;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {number}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cuserId'?: number;
|
|
383
383
|
}
|
|
@@ -23,5 +23,6 @@ export declare const WorkOrderSettingsTypeEnum: {
|
|
|
23
23
|
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
24
24
|
readonly OfflineAlertWorkOrder: "OFFLINE_ALERT_WORK_ORDER";
|
|
25
25
|
readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
|
|
26
|
+
readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
|
|
26
27
|
};
|
|
27
28
|
export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
|
|
@@ -27,5 +27,6 @@ exports.WorkOrderSettingsTypeEnum = {
|
|
|
27
27
|
NetworkMonitorRepairWorkOrder: 'NETWORK_MONITOR_REPAIR_WORK_ORDER',
|
|
28
28
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
29
29
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
30
|
-
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
30
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
31
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
31
32
|
};
|
|
@@ -34,5 +34,6 @@ export declare const WorkOrderTypeEnum: {
|
|
|
34
34
|
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
35
35
|
readonly OfflineAlertWorkOrder: "OFFLINE_ALERT_WORK_ORDER";
|
|
36
36
|
readonly MonitoringCoverageAlertWorkOrder: "MONITORING_COVERAGE_ALERT_WORK_ORDER";
|
|
37
|
+
readonly DisasterWarningWorkOrder: "DISASTER_WARNING_WORK_ORDER";
|
|
37
38
|
};
|
|
38
39
|
export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
|
|
@@ -38,5 +38,6 @@ exports.WorkOrderTypeEnum = {
|
|
|
38
38
|
NetworkRepairWorkOrder: 'NETWORK_REPAIR_WORK_ORDER',
|
|
39
39
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
40
40
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
41
|
-
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
41
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
42
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
42
43
|
};
|
|
@@ -50,6 +50,12 @@ export interface GetUserWx200Response {
|
|
|
50
50
|
* @memberof GetUserWx200Response
|
|
51
51
|
*/
|
|
52
52
|
'locale'?: GetUserWx200ResponseLocale;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof GetUserWx200Response
|
|
57
|
+
*/
|
|
58
|
+
'bufferSize'?: number;
|
|
53
59
|
/**
|
|
54
60
|
*
|
|
55
61
|
* @type {string}
|
|
@@ -68,12 +74,6 @@ export interface GetUserWx200Response {
|
|
|
68
74
|
* @memberof GetUserWx200Response
|
|
69
75
|
*/
|
|
70
76
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @type {number}
|
|
74
|
-
* @memberof GetUserWx200Response
|
|
75
|
-
*/
|
|
76
|
-
'bufferSize'?: number;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
79
|
* @type {string}
|
package/models/park-list-dto.ts
CHANGED
|
@@ -56,5 +56,17 @@ export interface ParkListDTO {
|
|
|
56
56
|
* @memberof ParkListDTO
|
|
57
57
|
*/
|
|
58
58
|
'srmParkCode'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* 经度
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ParkListDTO
|
|
63
|
+
*/
|
|
64
|
+
'longitude'?: string;
|
|
65
|
+
/**
|
|
66
|
+
* 维度
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ParkListDTO
|
|
69
|
+
*/
|
|
70
|
+
'latitude'?: string;
|
|
59
71
|
}
|
|
60
72
|
|
|
@@ -21,6 +21,9 @@ import type { PlanInspectionItemsDTO } from './plan-inspection-items-dto';
|
|
|
21
21
|
import type { PlanItemEditVo } from './plan-item-edit-vo';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import type { WorkOrderTypeSubcategoryEnum } from './work-order-type-subcategory-enum';
|
|
25
28
|
|
|
26
29
|
/**
|
|
@@ -113,6 +116,12 @@ export interface PlanDetailDTO {
|
|
|
113
116
|
* @memberof PlanDetailDTO
|
|
114
117
|
*/
|
|
115
118
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @type {PlanLevelEnum}
|
|
122
|
+
* @memberof PlanDetailDTO
|
|
123
|
+
*/
|
|
124
|
+
'planLevel'?: PlanLevelEnum;
|
|
116
125
|
}
|
|
117
126
|
|
|
118
127
|
export const PlanDetailDTOPlanTypeEnum = {
|
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 {string}
|
|
383
383
|
* @memberof SysUser
|
|
384
384
|
*/
|
|
385
|
-
'
|
|
385
|
+
'cid'?: string;
|
|
386
386
|
/**
|
|
387
387
|
*
|
|
388
|
-
* @type {
|
|
388
|
+
* @type {number}
|
|
389
389
|
* @memberof SysUser
|
|
390
390
|
*/
|
|
391
|
-
'
|
|
391
|
+
'cuserId'?: number;
|
|
392
392
|
}
|
|
393
393
|
|
|
@@ -28,7 +28,8 @@ export const WorkOrderSettingsTypeEnum = {
|
|
|
28
28
|
NetworkMonitorRepairWorkOrder: 'NETWORK_MONITOR_REPAIR_WORK_ORDER',
|
|
29
29
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
30
30
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
31
|
-
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
31
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
32
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
32
33
|
} as const;
|
|
33
34
|
|
|
34
35
|
export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
|
|
@@ -39,7 +39,8 @@ export const WorkOrderTypeEnum = {
|
|
|
39
39
|
NetworkRepairWorkOrder: 'NETWORK_REPAIR_WORK_ORDER',
|
|
40
40
|
ViolationWorkOrder: 'VIOLATION_WORK_ORDER',
|
|
41
41
|
OfflineAlertWorkOrder: 'OFFLINE_ALERT_WORK_ORDER',
|
|
42
|
-
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER'
|
|
42
|
+
MonitoringCoverageAlertWorkOrder: 'MONITORING_COVERAGE_ALERT_WORK_ORDER',
|
|
43
|
+
DisasterWarningWorkOrder: 'DISASTER_WARNING_WORK_ORDER'
|
|
43
44
|
} as const;
|
|
44
45
|
|
|
45
46
|
export type WorkOrderTypeEnum = typeof WorkOrderTypeEnum[keyof typeof WorkOrderTypeEnum];
|