@gizone/rrs-client 4.2.0-alpha.382 → 4.2.0-alpha.383
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 +0 -2
- package/api.ts +0 -1
- package/apis/equipment-api.ts +0 -91
- package/apis/work-order-api.ts +5 -18
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/apis/equipment-api.d.ts +0 -47
- package/dist/apis/equipment-api.js +0 -70
- package/dist/apis/work-order-api.d.ts +2 -10
- package/dist/apis/work-order-api.js +5 -10
- package/dist/esm/api.d.ts +0 -1
- package/dist/esm/api.js +0 -1
- package/dist/esm/apis/equipment-api.d.ts +0 -47
- package/dist/esm/apis/equipment-api.js +0 -70
- package/dist/esm/apis/work-order-api.d.ts +2 -10
- package/dist/esm/apis/work-order-api.js +5 -10
- package/dist/esm/models/index.d.ts +0 -1
- package/dist/esm/models/index.js +0 -1
- package/dist/esm/models/login-type-enum.d.ts +0 -2
- package/dist/esm/models/login-type-enum.js +1 -3
- package/dist/esm/models/park-info-dto.d.ts +0 -12
- package/dist/esm/models/plan-search-dto.d.ts +0 -6
- package/dist/esm/models/space.d.ts +0 -12
- package/dist/esm/models/sys-post.d.ts +0 -6
- package/dist/esm/models/sys-role.d.ts +0 -6
- package/dist/esm/models/sys-user.d.ts +2 -15
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/login-type-enum.d.ts +0 -2
- package/dist/models/login-type-enum.js +1 -3
- package/dist/models/park-info-dto.d.ts +0 -12
- package/dist/models/plan-search-dto.d.ts +0 -6
- package/dist/models/space.d.ts +0 -12
- package/dist/models/sys-post.d.ts +0 -6
- package/dist/models/sys-role.d.ts +0 -6
- package/dist/models/sys-user.d.ts +2 -15
- package/models/index.ts +0 -1
- package/models/login-type-enum.ts +1 -3
- package/models/park-info-dto.ts +0 -12
- package/models/plan-search-dto.ts +0 -6
- package/models/space.ts +0 -12
- package/models/sys-post.ts +0 -6
- package/models/sys-role.ts +0 -6
- package/models/sys-user.ts +2 -19
- package/package.json +1 -1
- package/apis/hwork-api.ts +0 -167
- package/dist/apis/hwork-api.d.ts +0 -96
- package/dist/apis/hwork-api.js +0 -145
- package/dist/esm/apis/hwork-api.d.ts +0 -96
- package/dist/esm/apis/hwork-api.js +0 -138
- package/dist/esm/models/user-source-enum.d.ts +0 -21
- package/dist/esm/models/user-source-enum.js +0 -22
- package/dist/models/user-source-enum.d.ts +0 -21
- package/dist/models/user-source-enum.js +0 -25
- package/models/user-source-enum.ts +0 -31
|
@@ -354,39 +354,6 @@ export const EquipmentApiAxiosParamCreator = function (configuration) {
|
|
|
354
354
|
options: localVarRequestOptions,
|
|
355
355
|
};
|
|
356
356
|
}),
|
|
357
|
-
/**
|
|
358
|
-
*
|
|
359
|
-
* @summary 批量删除设备
|
|
360
|
-
* @param {Array<number>} requestBody
|
|
361
|
-
* @param {*} [options] Override http request option.
|
|
362
|
-
* @throws {RequiredError}
|
|
363
|
-
*/
|
|
364
|
-
equipmentBatchDelete: (requestBody_1, ...args_1) => __awaiter(this, [requestBody_1, ...args_1], void 0, function* (requestBody, options = {}) {
|
|
365
|
-
// verify required parameter 'requestBody' is not null or undefined
|
|
366
|
-
assertParamExists('equipmentBatchDelete', 'requestBody', requestBody);
|
|
367
|
-
const localVarPath = `/gizone/equipment/batch`;
|
|
368
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
369
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
370
|
-
let baseOptions;
|
|
371
|
-
if (configuration) {
|
|
372
|
-
baseOptions = configuration.baseOptions;
|
|
373
|
-
}
|
|
374
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
375
|
-
const localVarHeaderParameter = {};
|
|
376
|
-
const localVarQueryParameter = {};
|
|
377
|
-
// authentication tokenScheme required
|
|
378
|
-
// http bearer authentication required
|
|
379
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
380
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
381
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
382
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
383
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
384
|
-
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration);
|
|
385
|
-
return {
|
|
386
|
-
url: toPathString(localVarUrlObj),
|
|
387
|
-
options: localVarRequestOptions,
|
|
388
|
-
};
|
|
389
|
-
}),
|
|
390
357
|
/**
|
|
391
358
|
*
|
|
392
359
|
* @summary Excel模板
|
|
@@ -1219,22 +1186,6 @@ export const EquipmentApiFp = function (configuration) {
|
|
|
1219
1186
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1220
1187
|
});
|
|
1221
1188
|
},
|
|
1222
|
-
/**
|
|
1223
|
-
*
|
|
1224
|
-
* @summary 批量删除设备
|
|
1225
|
-
* @param {Array<number>} requestBody
|
|
1226
|
-
* @param {*} [options] Override http request option.
|
|
1227
|
-
* @throws {RequiredError}
|
|
1228
|
-
*/
|
|
1229
|
-
equipmentBatchDelete(requestBody, options) {
|
|
1230
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1231
|
-
var _a, _b, _c;
|
|
1232
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.equipmentBatchDelete(requestBody, options);
|
|
1233
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1234
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EquipmentApi.equipmentBatchDelete']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1235
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1236
|
-
});
|
|
1237
|
-
},
|
|
1238
1189
|
/**
|
|
1239
1190
|
*
|
|
1240
1191
|
* @summary Excel模板
|
|
@@ -1637,16 +1588,6 @@ export const EquipmentApiFactory = function (configuration, basePath, axios) {
|
|
|
1637
1588
|
equipmentAddRedisList(options) {
|
|
1638
1589
|
return localVarFp.equipmentAddRedisList(options).then((request) => request(axios, basePath));
|
|
1639
1590
|
},
|
|
1640
|
-
/**
|
|
1641
|
-
*
|
|
1642
|
-
* @summary 批量删除设备
|
|
1643
|
-
* @param {EquipmentApiEquipmentBatchDeleteRequest} requestParameters Request parameters.
|
|
1644
|
-
* @param {*} [options] Override http request option.
|
|
1645
|
-
* @throws {RequiredError}
|
|
1646
|
-
*/
|
|
1647
|
-
equipmentBatchDelete(requestParameters, options) {
|
|
1648
|
-
return localVarFp.equipmentBatchDelete(requestParameters.requestBody, options).then((request) => request(axios, basePath));
|
|
1649
|
-
},
|
|
1650
1591
|
/**
|
|
1651
1592
|
*
|
|
1652
1593
|
* @summary Excel模板
|
|
@@ -1932,17 +1873,6 @@ export class EquipmentApi extends BaseAPI {
|
|
|
1932
1873
|
equipmentAddRedisList(options) {
|
|
1933
1874
|
return EquipmentApiFp(this.configuration).equipmentAddRedisList(options).then((request) => request(this.axios, this.basePath));
|
|
1934
1875
|
}
|
|
1935
|
-
/**
|
|
1936
|
-
*
|
|
1937
|
-
* @summary 批量删除设备
|
|
1938
|
-
* @param {EquipmentApiEquipmentBatchDeleteRequest} requestParameters Request parameters.
|
|
1939
|
-
* @param {*} [options] Override http request option.
|
|
1940
|
-
* @throws {RequiredError}
|
|
1941
|
-
* @memberof EquipmentApi
|
|
1942
|
-
*/
|
|
1943
|
-
equipmentBatchDelete(requestParameters, options) {
|
|
1944
|
-
return EquipmentApiFp(this.configuration).equipmentBatchDelete(requestParameters.requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
1945
|
-
}
|
|
1946
1876
|
/**
|
|
1947
1877
|
*
|
|
1948
1878
|
* @summary Excel模板
|
|
@@ -219,11 +219,10 @@ export declare const WorkOrderApiAxiosParamCreator: (configuration?: Configurati
|
|
|
219
219
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 执行周期
|
|
220
220
|
* @param {number} [state] 计划状态 1:启用 0:停用
|
|
221
221
|
* @param {Array<WorkOrderTypeSubcategoryEnum>} [workOrderTypeSubcategories] 工单类型小类
|
|
222
|
-
* @param {Array<number>} [itemIds] 巡检点ID
|
|
223
222
|
* @param {*} [options] Override http request option.
|
|
224
223
|
* @throws {RequiredError}
|
|
225
224
|
*/
|
|
226
|
-
planList: (parkId: number, page: number, pageSize: number, planName?: string, deptIds?: Array<number>, planTypes?: Array<PlanListPlanTypesEnum>, repeats?: WorkOrderPlanRepeatsEnum, state?: number, workOrderTypeSubcategories?: Array<WorkOrderTypeSubcategoryEnum>,
|
|
225
|
+
planList: (parkId: number, page: number, pageSize: number, planName?: string, deptIds?: Array<number>, planTypes?: Array<PlanListPlanTypesEnum>, repeats?: WorkOrderPlanRepeatsEnum, state?: number, workOrderTypeSubcategories?: Array<WorkOrderTypeSubcategoryEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
227
226
|
/**
|
|
228
227
|
*
|
|
229
228
|
* @summary 处理报事报修工单
|
|
@@ -750,11 +749,10 @@ export declare const WorkOrderApiFp: (configuration?: Configuration) => {
|
|
|
750
749
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 执行周期
|
|
751
750
|
* @param {number} [state] 计划状态 1:启用 0:停用
|
|
752
751
|
* @param {Array<WorkOrderTypeSubcategoryEnum>} [workOrderTypeSubcategories] 工单类型小类
|
|
753
|
-
* @param {Array<number>} [itemIds] 巡检点ID
|
|
754
752
|
* @param {*} [options] Override http request option.
|
|
755
753
|
* @throws {RequiredError}
|
|
756
754
|
*/
|
|
757
|
-
planList(parkId: number, page: number, pageSize: number, planName?: string, deptIds?: Array<number>, planTypes?: Array<PlanListPlanTypesEnum>, repeats?: WorkOrderPlanRepeatsEnum, state?: number, workOrderTypeSubcategories?: Array<WorkOrderTypeSubcategoryEnum>,
|
|
755
|
+
planList(parkId: number, page: number, pageSize: number, planName?: string, deptIds?: Array<number>, planTypes?: Array<PlanListPlanTypesEnum>, repeats?: WorkOrderPlanRepeatsEnum, state?: number, workOrderTypeSubcategories?: Array<WorkOrderTypeSubcategoryEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoPlanSearchDTO>>;
|
|
758
756
|
/**
|
|
759
757
|
*
|
|
760
758
|
* @summary 处理报事报修工单
|
|
@@ -1930,12 +1928,6 @@ export interface WorkOrderApiPlanListRequest {
|
|
|
1930
1928
|
* @memberof WorkOrderApiPlanList
|
|
1931
1929
|
*/
|
|
1932
1930
|
readonly workOrderTypeSubcategories?: Array<WorkOrderTypeSubcategoryEnum>;
|
|
1933
|
-
/**
|
|
1934
|
-
* 巡检点ID
|
|
1935
|
-
* @type {Array<number>}
|
|
1936
|
-
* @memberof WorkOrderApiPlanList
|
|
1937
|
-
*/
|
|
1938
|
-
readonly itemIds?: Array<number>;
|
|
1939
1931
|
}
|
|
1940
1932
|
/**
|
|
1941
1933
|
* Request parameters for processWorkOrder operation in WorkOrderApi.
|
|
@@ -599,11 +599,10 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
|
|
|
599
599
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 执行周期
|
|
600
600
|
* @param {number} [state] 计划状态 1:启用 0:停用
|
|
601
601
|
* @param {Array<WorkOrderTypeSubcategoryEnum>} [workOrderTypeSubcategories] 工单类型小类
|
|
602
|
-
* @param {Array<number>} [itemIds] 巡检点ID
|
|
603
602
|
* @param {*} [options] Override http request option.
|
|
604
603
|
* @throws {RequiredError}
|
|
605
604
|
*/
|
|
606
|
-
planList: (parkId_1, page_1, pageSize_1, planName_1, deptIds_1, planTypes_1, repeats_1, state_1, workOrderTypeSubcategories_1,
|
|
605
|
+
planList: (parkId_1, page_1, pageSize_1, planName_1, deptIds_1, planTypes_1, repeats_1, state_1, workOrderTypeSubcategories_1, ...args_1) => __awaiter(this, [parkId_1, page_1, pageSize_1, planName_1, deptIds_1, planTypes_1, repeats_1, state_1, workOrderTypeSubcategories_1, ...args_1], void 0, function* (parkId, page, pageSize, planName, deptIds, planTypes, repeats, state, workOrderTypeSubcategories, options = {}) {
|
|
607
606
|
// verify required parameter 'parkId' is not null or undefined
|
|
608
607
|
assertParamExists('planList', 'parkId', parkId);
|
|
609
608
|
// verify required parameter 'page' is not null or undefined
|
|
@@ -650,9 +649,6 @@ export const WorkOrderApiAxiosParamCreator = function (configuration) {
|
|
|
650
649
|
if (workOrderTypeSubcategories) {
|
|
651
650
|
localVarQueryParameter['workOrderTypeSubcategories'] = workOrderTypeSubcategories;
|
|
652
651
|
}
|
|
653
|
-
if (itemIds) {
|
|
654
|
-
localVarQueryParameter['itemIds'] = itemIds;
|
|
655
|
-
}
|
|
656
652
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
657
653
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
658
654
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -2463,14 +2459,13 @@ export const WorkOrderApiFp = function (configuration) {
|
|
|
2463
2459
|
* @param {WorkOrderPlanRepeatsEnum} [repeats] 执行周期
|
|
2464
2460
|
* @param {number} [state] 计划状态 1:启用 0:停用
|
|
2465
2461
|
* @param {Array<WorkOrderTypeSubcategoryEnum>} [workOrderTypeSubcategories] 工单类型小类
|
|
2466
|
-
* @param {Array<number>} [itemIds] 巡检点ID
|
|
2467
2462
|
* @param {*} [options] Override http request option.
|
|
2468
2463
|
* @throws {RequiredError}
|
|
2469
2464
|
*/
|
|
2470
|
-
planList(parkId, page, pageSize, planName, deptIds, planTypes, repeats, state, workOrderTypeSubcategories,
|
|
2465
|
+
planList(parkId, page, pageSize, planName, deptIds, planTypes, repeats, state, workOrderTypeSubcategories, options) {
|
|
2471
2466
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2472
2467
|
var _a, _b, _c;
|
|
2473
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.planList(parkId, page, pageSize, planName, deptIds, planTypes, repeats, state, workOrderTypeSubcategories,
|
|
2468
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.planList(parkId, page, pageSize, planName, deptIds, planTypes, repeats, state, workOrderTypeSubcategories, options);
|
|
2474
2469
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2475
2470
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['WorkOrderApi.planList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2476
2471
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -3345,7 +3340,7 @@ export const WorkOrderApiFactory = function (configuration, basePath, axios) {
|
|
|
3345
3340
|
* @throws {RequiredError}
|
|
3346
3341
|
*/
|
|
3347
3342
|
planList(requestParameters, options) {
|
|
3348
|
-
return localVarFp.planList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.planName, requestParameters.deptIds, requestParameters.planTypes, requestParameters.repeats, requestParameters.state, requestParameters.workOrderTypeSubcategories,
|
|
3343
|
+
return localVarFp.planList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.planName, requestParameters.deptIds, requestParameters.planTypes, requestParameters.repeats, requestParameters.state, requestParameters.workOrderTypeSubcategories, options).then((request) => request(axios, basePath));
|
|
3349
3344
|
},
|
|
3350
3345
|
/**
|
|
3351
3346
|
*
|
|
@@ -3939,7 +3934,7 @@ export class WorkOrderApi extends BaseAPI {
|
|
|
3939
3934
|
* @memberof WorkOrderApi
|
|
3940
3935
|
*/
|
|
3941
3936
|
planList(requestParameters, options) {
|
|
3942
|
-
return WorkOrderApiFp(this.configuration).planList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.planName, requestParameters.deptIds, requestParameters.planTypes, requestParameters.repeats, requestParameters.state, requestParameters.workOrderTypeSubcategories,
|
|
3937
|
+
return WorkOrderApiFp(this.configuration).planList(requestParameters.parkId, requestParameters.page, requestParameters.pageSize, requestParameters.planName, requestParameters.deptIds, requestParameters.planTypes, requestParameters.repeats, requestParameters.state, requestParameters.workOrderTypeSubcategories, options).then((request) => request(this.axios, this.basePath));
|
|
3943
3938
|
}
|
|
3944
3939
|
/**
|
|
3945
3940
|
*
|
|
@@ -415,7 +415,6 @@ export * from './user-excel-dto';
|
|
|
415
415
|
export * from './user-roles-and-permissions-dto';
|
|
416
416
|
export * from './user-settings-entity';
|
|
417
417
|
export * from './user-settings-update-bo';
|
|
418
|
-
export * from './user-source-enum';
|
|
419
418
|
export * from './user-whether-privacy-dto';
|
|
420
419
|
export * from './violation-center-attribute-enum';
|
|
421
420
|
export * from './violation-decision-vo';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -415,7 +415,6 @@ export * from './user-excel-dto';
|
|
|
415
415
|
export * from './user-roles-and-permissions-dto';
|
|
416
416
|
export * from './user-settings-entity';
|
|
417
417
|
export * from './user-settings-update-bo';
|
|
418
|
-
export * from './user-source-enum';
|
|
419
418
|
export * from './user-whether-privacy-dto';
|
|
420
419
|
export * from './violation-center-attribute-enum';
|
|
421
420
|
export * from './violation-decision-vo';
|
|
@@ -19,7 +19,5 @@ export declare const LoginTypeEnum: {
|
|
|
19
19
|
readonly Applet: "APPLET";
|
|
20
20
|
readonly App: "APP";
|
|
21
21
|
readonly H5: "H5";
|
|
22
|
-
readonly HWorkPc: "H_WORK_PC";
|
|
23
|
-
readonly HWorkApp: "H_WORK_APP";
|
|
24
22
|
};
|
|
25
23
|
export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
|
|
@@ -64,18 +64,6 @@ export interface ParkInfoDTO {
|
|
|
64
64
|
* @memberof ParkInfoDTO
|
|
65
65
|
*/
|
|
66
66
|
'ancestors'?: string;
|
|
67
|
-
/**
|
|
68
|
-
* 集团ID
|
|
69
|
-
* @type {number}
|
|
70
|
-
* @memberof ParkInfoDTO
|
|
71
|
-
*/
|
|
72
|
-
'groupId'?: number;
|
|
73
|
-
/**
|
|
74
|
-
* 大区ID
|
|
75
|
-
* @type {number}
|
|
76
|
-
* @memberof ParkInfoDTO
|
|
77
|
-
*/
|
|
78
|
-
'areaId'?: number;
|
|
79
67
|
/**
|
|
80
68
|
* 园区平面图
|
|
81
69
|
* @type {string}
|
|
@@ -78,12 +78,6 @@ export interface PlanSearchDTO {
|
|
|
78
78
|
* @memberof PlanSearchDTO
|
|
79
79
|
*/
|
|
80
80
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
81
|
-
/**
|
|
82
|
-
* 巡检点ID集合
|
|
83
|
-
* @type {Array<number>}
|
|
84
|
-
* @memberof PlanSearchDTO
|
|
85
|
-
*/
|
|
86
|
-
'itemIds'?: Array<number>;
|
|
87
81
|
}
|
|
88
82
|
export declare const PlanSearchDTOPlanTypeEnum: {
|
|
89
83
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
|
@@ -40,16 +40,4 @@ export interface Space {
|
|
|
40
40
|
* @memberof Space
|
|
41
41
|
*/
|
|
42
42
|
'parentName'?: string;
|
|
43
|
-
/**
|
|
44
|
-
* 父ID
|
|
45
|
-
* @type {number}
|
|
46
|
-
* @memberof Space
|
|
47
|
-
*/
|
|
48
|
-
'parentId'?: number;
|
|
49
|
-
/**
|
|
50
|
-
* 父ID列表
|
|
51
|
-
* @type {Array<number>}
|
|
52
|
-
* @memberof Space
|
|
53
|
-
*/
|
|
54
|
-
'parentIds'?: Array<number>;
|
|
55
43
|
}
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
import type { SysDept } from './sys-dept';
|
|
13
13
|
import type { SysRole } from './sys-role';
|
|
14
14
|
import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
|
|
15
|
-
import type { UserSourceEnum } from './user-source-enum';
|
|
16
15
|
/**
|
|
17
16
|
* 用户对象
|
|
18
17
|
* @export
|
|
@@ -365,26 +364,14 @@ export interface SysUser {
|
|
|
365
364
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
366
365
|
/**
|
|
367
366
|
*
|
|
368
|
-
* @type {
|
|
369
|
-
* @memberof SysUser
|
|
370
|
-
*/
|
|
371
|
-
'userSource'?: UserSourceEnum;
|
|
372
|
-
/**
|
|
373
|
-
* 源用户ID
|
|
374
|
-
* @type {string}
|
|
367
|
+
* @type {number}
|
|
375
368
|
* @memberof SysUser
|
|
376
369
|
*/
|
|
377
|
-
'
|
|
370
|
+
'cuserId'?: number;
|
|
378
371
|
/**
|
|
379
372
|
*
|
|
380
373
|
* @type {string}
|
|
381
374
|
* @memberof SysUser
|
|
382
375
|
*/
|
|
383
376
|
'cid'?: string;
|
|
384
|
-
/**
|
|
385
|
-
*
|
|
386
|
-
* @type {number}
|
|
387
|
-
* @memberof SysUser
|
|
388
|
-
*/
|
|
389
|
-
'cuserId'?: number;
|
|
390
377
|
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -415,7 +415,6 @@ export * from './user-excel-dto';
|
|
|
415
415
|
export * from './user-roles-and-permissions-dto';
|
|
416
416
|
export * from './user-settings-entity';
|
|
417
417
|
export * from './user-settings-update-bo';
|
|
418
|
-
export * from './user-source-enum';
|
|
419
418
|
export * from './user-whether-privacy-dto';
|
|
420
419
|
export * from './violation-center-attribute-enum';
|
|
421
420
|
export * from './violation-decision-vo';
|
package/dist/models/index.js
CHANGED
|
@@ -431,7 +431,6 @@ __exportStar(require("./user-excel-dto"), exports);
|
|
|
431
431
|
__exportStar(require("./user-roles-and-permissions-dto"), exports);
|
|
432
432
|
__exportStar(require("./user-settings-entity"), exports);
|
|
433
433
|
__exportStar(require("./user-settings-update-bo"), exports);
|
|
434
|
-
__exportStar(require("./user-source-enum"), exports);
|
|
435
434
|
__exportStar(require("./user-whether-privacy-dto"), exports);
|
|
436
435
|
__exportStar(require("./violation-center-attribute-enum"), exports);
|
|
437
436
|
__exportStar(require("./violation-decision-vo"), exports);
|
|
@@ -19,7 +19,5 @@ export declare const LoginTypeEnum: {
|
|
|
19
19
|
readonly Applet: "APPLET";
|
|
20
20
|
readonly App: "APP";
|
|
21
21
|
readonly H5: "H5";
|
|
22
|
-
readonly HWorkPc: "H_WORK_PC";
|
|
23
|
-
readonly HWorkApp: "H_WORK_APP";
|
|
24
22
|
};
|
|
25
23
|
export type LoginTypeEnum = typeof LoginTypeEnum[keyof typeof LoginTypeEnum];
|
|
@@ -64,18 +64,6 @@ export interface ParkInfoDTO {
|
|
|
64
64
|
* @memberof ParkInfoDTO
|
|
65
65
|
*/
|
|
66
66
|
'ancestors'?: string;
|
|
67
|
-
/**
|
|
68
|
-
* 集团ID
|
|
69
|
-
* @type {number}
|
|
70
|
-
* @memberof ParkInfoDTO
|
|
71
|
-
*/
|
|
72
|
-
'groupId'?: number;
|
|
73
|
-
/**
|
|
74
|
-
* 大区ID
|
|
75
|
-
* @type {number}
|
|
76
|
-
* @memberof ParkInfoDTO
|
|
77
|
-
*/
|
|
78
|
-
'areaId'?: number;
|
|
79
67
|
/**
|
|
80
68
|
* 园区平面图
|
|
81
69
|
* @type {string}
|
|
@@ -78,12 +78,6 @@ export interface PlanSearchDTO {
|
|
|
78
78
|
* @memberof PlanSearchDTO
|
|
79
79
|
*/
|
|
80
80
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
81
|
-
/**
|
|
82
|
-
* 巡检点ID集合
|
|
83
|
-
* @type {Array<number>}
|
|
84
|
-
* @memberof PlanSearchDTO
|
|
85
|
-
*/
|
|
86
|
-
'itemIds'?: Array<number>;
|
|
87
81
|
}
|
|
88
82
|
export declare const PlanSearchDTOPlanTypeEnum: {
|
|
89
83
|
readonly PlanTypeShebeiweibao: "PLAN_TYPE_SHEBEIWEIBAO";
|
package/dist/models/space.d.ts
CHANGED
|
@@ -40,16 +40,4 @@ export interface Space {
|
|
|
40
40
|
* @memberof Space
|
|
41
41
|
*/
|
|
42
42
|
'parentName'?: string;
|
|
43
|
-
/**
|
|
44
|
-
* 父ID
|
|
45
|
-
* @type {number}
|
|
46
|
-
* @memberof Space
|
|
47
|
-
*/
|
|
48
|
-
'parentId'?: number;
|
|
49
|
-
/**
|
|
50
|
-
* 父ID列表
|
|
51
|
-
* @type {Array<number>}
|
|
52
|
-
* @memberof Space
|
|
53
|
-
*/
|
|
54
|
-
'parentIds'?: Array<number>;
|
|
55
43
|
}
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
import type { SysDept } from './sys-dept';
|
|
13
13
|
import type { SysRole } from './sys-role';
|
|
14
14
|
import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
|
|
15
|
-
import type { UserSourceEnum } from './user-source-enum';
|
|
16
15
|
/**
|
|
17
16
|
* 用户对象
|
|
18
17
|
* @export
|
|
@@ -365,26 +364,14 @@ export interface SysUser {
|
|
|
365
364
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
366
365
|
/**
|
|
367
366
|
*
|
|
368
|
-
* @type {
|
|
369
|
-
* @memberof SysUser
|
|
370
|
-
*/
|
|
371
|
-
'userSource'?: UserSourceEnum;
|
|
372
|
-
/**
|
|
373
|
-
* 源用户ID
|
|
374
|
-
* @type {string}
|
|
367
|
+
* @type {number}
|
|
375
368
|
* @memberof SysUser
|
|
376
369
|
*/
|
|
377
|
-
'
|
|
370
|
+
'cuserId'?: number;
|
|
378
371
|
/**
|
|
379
372
|
*
|
|
380
373
|
* @type {string}
|
|
381
374
|
* @memberof SysUser
|
|
382
375
|
*/
|
|
383
376
|
'cid'?: string;
|
|
384
|
-
/**
|
|
385
|
-
*
|
|
386
|
-
* @type {number}
|
|
387
|
-
* @memberof SysUser
|
|
388
|
-
*/
|
|
389
|
-
'cuserId'?: number;
|
|
390
377
|
}
|
package/models/index.ts
CHANGED
|
@@ -415,7 +415,6 @@ export * from './user-excel-dto';
|
|
|
415
415
|
export * from './user-roles-and-permissions-dto';
|
|
416
416
|
export * from './user-settings-entity';
|
|
417
417
|
export * from './user-settings-update-bo';
|
|
418
|
-
export * from './user-source-enum';
|
|
419
418
|
export * from './user-whether-privacy-dto';
|
|
420
419
|
export * from './violation-center-attribute-enum';
|
|
421
420
|
export * from './violation-decision-vo';
|
package/models/park-info-dto.ts
CHANGED
|
@@ -71,18 +71,6 @@ export interface ParkInfoDTO {
|
|
|
71
71
|
* @memberof ParkInfoDTO
|
|
72
72
|
*/
|
|
73
73
|
'ancestors'?: string;
|
|
74
|
-
/**
|
|
75
|
-
* 集团ID
|
|
76
|
-
* @type {number}
|
|
77
|
-
* @memberof ParkInfoDTO
|
|
78
|
-
*/
|
|
79
|
-
'groupId'?: number;
|
|
80
|
-
/**
|
|
81
|
-
* 大区ID
|
|
82
|
-
* @type {number}
|
|
83
|
-
* @memberof ParkInfoDTO
|
|
84
|
-
*/
|
|
85
|
-
'areaId'?: number;
|
|
86
74
|
/**
|
|
87
75
|
* 园区平面图
|
|
88
76
|
* @type {string}
|
|
@@ -89,12 +89,6 @@ export interface PlanSearchDTO {
|
|
|
89
89
|
* @memberof PlanSearchDTO
|
|
90
90
|
*/
|
|
91
91
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
92
|
-
/**
|
|
93
|
-
* 巡检点ID集合
|
|
94
|
-
* @type {Array<number>}
|
|
95
|
-
* @memberof PlanSearchDTO
|
|
96
|
-
*/
|
|
97
|
-
'itemIds'?: Array<number>;
|
|
98
92
|
}
|
|
99
93
|
|
|
100
94
|
export const PlanSearchDTOPlanTypeEnum = {
|
package/models/space.ts
CHANGED
|
@@ -47,17 +47,5 @@ export interface Space {
|
|
|
47
47
|
* @memberof Space
|
|
48
48
|
*/
|
|
49
49
|
'parentName'?: string;
|
|
50
|
-
/**
|
|
51
|
-
* 父ID
|
|
52
|
-
* @type {number}
|
|
53
|
-
* @memberof Space
|
|
54
|
-
*/
|
|
55
|
-
'parentId'?: number;
|
|
56
|
-
/**
|
|
57
|
-
* 父ID列表
|
|
58
|
-
* @type {Array<number>}
|
|
59
|
-
* @memberof Space
|
|
60
|
-
*/
|
|
61
|
-
'parentIds'?: Array<number>;
|
|
62
50
|
}
|
|
63
51
|
|
package/models/sys-post.ts
CHANGED
package/models/sys-role.ts
CHANGED
package/models/sys-user.ts
CHANGED
|
@@ -22,9 +22,6 @@ import type { SysRole } from './sys-role';
|
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import type { SysUserAttachmentInfo } from './sys-user-attachment-info';
|
|
25
|
-
// May contain unused imports in some cases
|
|
26
|
-
// @ts-ignore
|
|
27
|
-
import type { UserSourceEnum } from './user-source-enum';
|
|
28
25
|
|
|
29
26
|
/**
|
|
30
27
|
* 用户对象
|
|
@@ -376,29 +373,15 @@ export interface SysUser {
|
|
|
376
373
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
377
374
|
/**
|
|
378
375
|
*
|
|
379
|
-
* @type {
|
|
380
|
-
* @memberof SysUser
|
|
381
|
-
*/
|
|
382
|
-
'userSource'?: UserSourceEnum;
|
|
383
|
-
/**
|
|
384
|
-
* 源用户ID
|
|
385
|
-
* @type {string}
|
|
376
|
+
* @type {number}
|
|
386
377
|
* @memberof SysUser
|
|
387
378
|
*/
|
|
388
|
-
'
|
|
379
|
+
'cuserId'?: number;
|
|
389
380
|
/**
|
|
390
381
|
*
|
|
391
382
|
* @type {string}
|
|
392
383
|
* @memberof SysUser
|
|
393
384
|
*/
|
|
394
385
|
'cid'?: string;
|
|
395
|
-
/**
|
|
396
|
-
*
|
|
397
|
-
* @type {number}
|
|
398
|
-
* @memberof SysUser
|
|
399
|
-
*/
|
|
400
|
-
'cuserId'?: number;
|
|
401
386
|
}
|
|
402
387
|
|
|
403
|
-
|
|
404
|
-
|