@gizone/rrs-client 4.2.6-alpha.416 → 4.2.6-alpha.417
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/park-api.ts +524 -0
- package/apis/setting-api.ts +522 -0
- package/dist/apis/park-api.d.ts +277 -0
- package/dist/apis/park-api.js +414 -0
- package/dist/apis/setting-api.d.ts +276 -0
- package/dist/apis/setting-api.js +414 -0
- package/dist/esm/apis/park-api.d.ts +277 -0
- package/dist/esm/apis/park-api.js +414 -0
- package/dist/esm/apis/setting-api.d.ts +276 -0
- package/dist/esm/apis/setting-api.js +414 -0
- package/package.json +1 -1
|
@@ -390,6 +390,198 @@ export const SettingApiAxiosParamCreator = function (configuration) {
|
|
|
390
390
|
options: localVarRequestOptions,
|
|
391
391
|
};
|
|
392
392
|
}),
|
|
393
|
+
/**
|
|
394
|
+
*
|
|
395
|
+
* @summary 园区初始化
|
|
396
|
+
* @param {number} parkId
|
|
397
|
+
* @param {*} [options] Override http request option.
|
|
398
|
+
* @throws {RequiredError}
|
|
399
|
+
*/
|
|
400
|
+
parkInit: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
401
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
402
|
+
assertParamExists('parkInit', 'parkId', parkId);
|
|
403
|
+
const localVarPath = `/park/{parkId}/init`
|
|
404
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
405
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
406
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
407
|
+
let baseOptions;
|
|
408
|
+
if (configuration) {
|
|
409
|
+
baseOptions = configuration.baseOptions;
|
|
410
|
+
}
|
|
411
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
412
|
+
const localVarHeaderParameter = {};
|
|
413
|
+
const localVarQueryParameter = {};
|
|
414
|
+
// authentication tokenScheme required
|
|
415
|
+
// http bearer authentication required
|
|
416
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
417
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
418
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
419
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
420
|
+
return {
|
|
421
|
+
url: toPathString(localVarUrlObj),
|
|
422
|
+
options: localVarRequestOptions,
|
|
423
|
+
};
|
|
424
|
+
}),
|
|
425
|
+
/**
|
|
426
|
+
*
|
|
427
|
+
* @summary 园区初始化-部门
|
|
428
|
+
* @param {number} parkId
|
|
429
|
+
* @param {*} [options] Override http request option.
|
|
430
|
+
* @throws {RequiredError}
|
|
431
|
+
*/
|
|
432
|
+
parkInitDept: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
433
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
434
|
+
assertParamExists('parkInitDept', 'parkId', parkId);
|
|
435
|
+
const localVarPath = `/park/{parkId}/init/dept`
|
|
436
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
437
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
438
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
439
|
+
let baseOptions;
|
|
440
|
+
if (configuration) {
|
|
441
|
+
baseOptions = configuration.baseOptions;
|
|
442
|
+
}
|
|
443
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
444
|
+
const localVarHeaderParameter = {};
|
|
445
|
+
const localVarQueryParameter = {};
|
|
446
|
+
// authentication tokenScheme required
|
|
447
|
+
// http bearer authentication required
|
|
448
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
449
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
450
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
451
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
452
|
+
return {
|
|
453
|
+
url: toPathString(localVarUrlObj),
|
|
454
|
+
options: localVarRequestOptions,
|
|
455
|
+
};
|
|
456
|
+
}),
|
|
457
|
+
/**
|
|
458
|
+
*
|
|
459
|
+
* @summary 园区初始化-角色
|
|
460
|
+
* @param {number} parkId
|
|
461
|
+
* @param {*} [options] Override http request option.
|
|
462
|
+
* @throws {RequiredError}
|
|
463
|
+
*/
|
|
464
|
+
parkInitRole: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
465
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
466
|
+
assertParamExists('parkInitRole', 'parkId', parkId);
|
|
467
|
+
const localVarPath = `/park/{parkId}/init/role`
|
|
468
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
469
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
470
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
471
|
+
let baseOptions;
|
|
472
|
+
if (configuration) {
|
|
473
|
+
baseOptions = configuration.baseOptions;
|
|
474
|
+
}
|
|
475
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
476
|
+
const localVarHeaderParameter = {};
|
|
477
|
+
const localVarQueryParameter = {};
|
|
478
|
+
// authentication tokenScheme required
|
|
479
|
+
// http bearer authentication required
|
|
480
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
481
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
482
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
483
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
484
|
+
return {
|
|
485
|
+
url: toPathString(localVarUrlObj),
|
|
486
|
+
options: localVarRequestOptions,
|
|
487
|
+
};
|
|
488
|
+
}),
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @summary 园区初始化-工单部门查看权限
|
|
492
|
+
* @param {number} parkId
|
|
493
|
+
* @param {*} [options] Override http request option.
|
|
494
|
+
* @throws {RequiredError}
|
|
495
|
+
*/
|
|
496
|
+
parkInitWorkOrderDeptSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
497
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
498
|
+
assertParamExists('parkInitWorkOrderDeptSettings', 'parkId', parkId);
|
|
499
|
+
const localVarPath = `/park/{parkId}/init/workOrderDeptSettings`
|
|
500
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
501
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
502
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
503
|
+
let baseOptions;
|
|
504
|
+
if (configuration) {
|
|
505
|
+
baseOptions = configuration.baseOptions;
|
|
506
|
+
}
|
|
507
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
508
|
+
const localVarHeaderParameter = {};
|
|
509
|
+
const localVarQueryParameter = {};
|
|
510
|
+
// authentication tokenScheme required
|
|
511
|
+
// http bearer authentication required
|
|
512
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
513
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
514
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
515
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
516
|
+
return {
|
|
517
|
+
url: toPathString(localVarUrlObj),
|
|
518
|
+
options: localVarRequestOptions,
|
|
519
|
+
};
|
|
520
|
+
}),
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
524
|
+
* @param {number} parkId
|
|
525
|
+
* @param {*} [options] Override http request option.
|
|
526
|
+
* @throws {RequiredError}
|
|
527
|
+
*/
|
|
528
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
529
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
530
|
+
assertParamExists('parkInitWorkOrderIssueTypeExecutionTimeSettings', 'parkId', parkId);
|
|
531
|
+
const localVarPath = `/park/{parkId}/init/workOrderIssueTypeExecutionTimeSettings`
|
|
532
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
533
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
534
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
535
|
+
let baseOptions;
|
|
536
|
+
if (configuration) {
|
|
537
|
+
baseOptions = configuration.baseOptions;
|
|
538
|
+
}
|
|
539
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
540
|
+
const localVarHeaderParameter = {};
|
|
541
|
+
const localVarQueryParameter = {};
|
|
542
|
+
// authentication tokenScheme required
|
|
543
|
+
// http bearer authentication required
|
|
544
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
545
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
546
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
547
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
548
|
+
return {
|
|
549
|
+
url: toPathString(localVarUrlObj),
|
|
550
|
+
options: localVarRequestOptions,
|
|
551
|
+
};
|
|
552
|
+
}),
|
|
553
|
+
/**
|
|
554
|
+
*
|
|
555
|
+
* @summary 园区初始化-工单问题类型部门
|
|
556
|
+
* @param {number} parkId
|
|
557
|
+
* @param {*} [options] Override http request option.
|
|
558
|
+
* @throws {RequiredError}
|
|
559
|
+
*/
|
|
560
|
+
parkInitWorkOrderIssueTypeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
561
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
562
|
+
assertParamExists('parkInitWorkOrderIssueTypeSettings', 'parkId', parkId);
|
|
563
|
+
const localVarPath = `/park/{parkId}/init/workOrderIssueTypeSettings`
|
|
564
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
565
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
566
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
567
|
+
let baseOptions;
|
|
568
|
+
if (configuration) {
|
|
569
|
+
baseOptions = configuration.baseOptions;
|
|
570
|
+
}
|
|
571
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
572
|
+
const localVarHeaderParameter = {};
|
|
573
|
+
const localVarQueryParameter = {};
|
|
574
|
+
// authentication tokenScheme required
|
|
575
|
+
// http bearer authentication required
|
|
576
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
577
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
578
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
579
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
580
|
+
return {
|
|
581
|
+
url: toPathString(localVarUrlObj),
|
|
582
|
+
options: localVarRequestOptions,
|
|
583
|
+
};
|
|
584
|
+
}),
|
|
393
585
|
/**
|
|
394
586
|
*
|
|
395
587
|
* @summary 根据时间区间查询
|
|
@@ -1137,6 +1329,102 @@ export const SettingApiFp = function (configuration) {
|
|
|
1137
1329
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1138
1330
|
});
|
|
1139
1331
|
},
|
|
1332
|
+
/**
|
|
1333
|
+
*
|
|
1334
|
+
* @summary 园区初始化
|
|
1335
|
+
* @param {number} parkId
|
|
1336
|
+
* @param {*} [options] Override http request option.
|
|
1337
|
+
* @throws {RequiredError}
|
|
1338
|
+
*/
|
|
1339
|
+
parkInit(parkId, options) {
|
|
1340
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1341
|
+
var _a, _b, _c;
|
|
1342
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInit(parkId, options);
|
|
1343
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1344
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.parkInit']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1345
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1346
|
+
});
|
|
1347
|
+
},
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @summary 园区初始化-部门
|
|
1351
|
+
* @param {number} parkId
|
|
1352
|
+
* @param {*} [options] Override http request option.
|
|
1353
|
+
* @throws {RequiredError}
|
|
1354
|
+
*/
|
|
1355
|
+
parkInitDept(parkId, options) {
|
|
1356
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1357
|
+
var _a, _b, _c;
|
|
1358
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitDept(parkId, options);
|
|
1359
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1360
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.parkInitDept']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1361
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1362
|
+
});
|
|
1363
|
+
},
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* @summary 园区初始化-角色
|
|
1367
|
+
* @param {number} parkId
|
|
1368
|
+
* @param {*} [options] Override http request option.
|
|
1369
|
+
* @throws {RequiredError}
|
|
1370
|
+
*/
|
|
1371
|
+
parkInitRole(parkId, options) {
|
|
1372
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1373
|
+
var _a, _b, _c;
|
|
1374
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitRole(parkId, options);
|
|
1375
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1376
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.parkInitRole']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1377
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1378
|
+
});
|
|
1379
|
+
},
|
|
1380
|
+
/**
|
|
1381
|
+
*
|
|
1382
|
+
* @summary 园区初始化-工单部门查看权限
|
|
1383
|
+
* @param {number} parkId
|
|
1384
|
+
* @param {*} [options] Override http request option.
|
|
1385
|
+
* @throws {RequiredError}
|
|
1386
|
+
*/
|
|
1387
|
+
parkInitWorkOrderDeptSettings(parkId, options) {
|
|
1388
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1389
|
+
var _a, _b, _c;
|
|
1390
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderDeptSettings(parkId, options);
|
|
1391
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1392
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.parkInitWorkOrderDeptSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1393
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1394
|
+
});
|
|
1395
|
+
},
|
|
1396
|
+
/**
|
|
1397
|
+
*
|
|
1398
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
1399
|
+
* @param {number} parkId
|
|
1400
|
+
* @param {*} [options] Override http request option.
|
|
1401
|
+
* @throws {RequiredError}
|
|
1402
|
+
*/
|
|
1403
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options) {
|
|
1404
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1405
|
+
var _a, _b, _c;
|
|
1406
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options);
|
|
1407
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1408
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.parkInitWorkOrderIssueTypeExecutionTimeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1409
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1410
|
+
});
|
|
1411
|
+
},
|
|
1412
|
+
/**
|
|
1413
|
+
*
|
|
1414
|
+
* @summary 园区初始化-工单问题类型部门
|
|
1415
|
+
* @param {number} parkId
|
|
1416
|
+
* @param {*} [options] Override http request option.
|
|
1417
|
+
* @throws {RequiredError}
|
|
1418
|
+
*/
|
|
1419
|
+
parkInitWorkOrderIssueTypeSettings(parkId, options) {
|
|
1420
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1421
|
+
var _a, _b, _c;
|
|
1422
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeSettings(parkId, options);
|
|
1423
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1424
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SettingApi.parkInitWorkOrderIssueTypeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1425
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1426
|
+
});
|
|
1427
|
+
},
|
|
1140
1428
|
/**
|
|
1141
1429
|
*
|
|
1142
1430
|
* @summary 根据时间区间查询
|
|
@@ -1512,6 +1800,66 @@ export const SettingApiFactory = function (configuration, basePath, axios) {
|
|
|
1512
1800
|
getByDate(requestParameters, options) {
|
|
1513
1801
|
return localVarFp.getByDate(requestParameters.date, options).then((request) => request(axios, basePath));
|
|
1514
1802
|
},
|
|
1803
|
+
/**
|
|
1804
|
+
*
|
|
1805
|
+
* @summary 园区初始化
|
|
1806
|
+
* @param {SettingApiParkInitRequest} requestParameters Request parameters.
|
|
1807
|
+
* @param {*} [options] Override http request option.
|
|
1808
|
+
* @throws {RequiredError}
|
|
1809
|
+
*/
|
|
1810
|
+
parkInit(requestParameters, options) {
|
|
1811
|
+
return localVarFp.parkInit(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
1812
|
+
},
|
|
1813
|
+
/**
|
|
1814
|
+
*
|
|
1815
|
+
* @summary 园区初始化-部门
|
|
1816
|
+
* @param {SettingApiParkInitDeptRequest} requestParameters Request parameters.
|
|
1817
|
+
* @param {*} [options] Override http request option.
|
|
1818
|
+
* @throws {RequiredError}
|
|
1819
|
+
*/
|
|
1820
|
+
parkInitDept(requestParameters, options) {
|
|
1821
|
+
return localVarFp.parkInitDept(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
1822
|
+
},
|
|
1823
|
+
/**
|
|
1824
|
+
*
|
|
1825
|
+
* @summary 园区初始化-角色
|
|
1826
|
+
* @param {SettingApiParkInitRoleRequest} requestParameters Request parameters.
|
|
1827
|
+
* @param {*} [options] Override http request option.
|
|
1828
|
+
* @throws {RequiredError}
|
|
1829
|
+
*/
|
|
1830
|
+
parkInitRole(requestParameters, options) {
|
|
1831
|
+
return localVarFp.parkInitRole(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
1832
|
+
},
|
|
1833
|
+
/**
|
|
1834
|
+
*
|
|
1835
|
+
* @summary 园区初始化-工单部门查看权限
|
|
1836
|
+
* @param {SettingApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
|
|
1837
|
+
* @param {*} [options] Override http request option.
|
|
1838
|
+
* @throws {RequiredError}
|
|
1839
|
+
*/
|
|
1840
|
+
parkInitWorkOrderDeptSettings(requestParameters, options) {
|
|
1841
|
+
return localVarFp.parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
1842
|
+
},
|
|
1843
|
+
/**
|
|
1844
|
+
*
|
|
1845
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
1846
|
+
* @param {SettingApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
|
|
1847
|
+
* @param {*} [options] Override http request option.
|
|
1848
|
+
* @throws {RequiredError}
|
|
1849
|
+
*/
|
|
1850
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
|
|
1851
|
+
return localVarFp.parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
1852
|
+
},
|
|
1853
|
+
/**
|
|
1854
|
+
*
|
|
1855
|
+
* @summary 园区初始化-工单问题类型部门
|
|
1856
|
+
* @param {SettingApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
|
|
1857
|
+
* @param {*} [options] Override http request option.
|
|
1858
|
+
* @throws {RequiredError}
|
|
1859
|
+
*/
|
|
1860
|
+
parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
|
|
1861
|
+
return localVarFp.parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
1862
|
+
},
|
|
1515
1863
|
/**
|
|
1516
1864
|
*
|
|
1517
1865
|
* @summary 根据时间区间查询
|
|
@@ -1789,6 +2137,72 @@ export class SettingApi extends BaseAPI {
|
|
|
1789
2137
|
getByDate(requestParameters, options) {
|
|
1790
2138
|
return SettingApiFp(this.configuration).getByDate(requestParameters.date, options).then((request) => request(this.axios, this.basePath));
|
|
1791
2139
|
}
|
|
2140
|
+
/**
|
|
2141
|
+
*
|
|
2142
|
+
* @summary 园区初始化
|
|
2143
|
+
* @param {SettingApiParkInitRequest} requestParameters Request parameters.
|
|
2144
|
+
* @param {*} [options] Override http request option.
|
|
2145
|
+
* @throws {RequiredError}
|
|
2146
|
+
* @memberof SettingApi
|
|
2147
|
+
*/
|
|
2148
|
+
parkInit(requestParameters, options) {
|
|
2149
|
+
return SettingApiFp(this.configuration).parkInit(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
2150
|
+
}
|
|
2151
|
+
/**
|
|
2152
|
+
*
|
|
2153
|
+
* @summary 园区初始化-部门
|
|
2154
|
+
* @param {SettingApiParkInitDeptRequest} requestParameters Request parameters.
|
|
2155
|
+
* @param {*} [options] Override http request option.
|
|
2156
|
+
* @throws {RequiredError}
|
|
2157
|
+
* @memberof SettingApi
|
|
2158
|
+
*/
|
|
2159
|
+
parkInitDept(requestParameters, options) {
|
|
2160
|
+
return SettingApiFp(this.configuration).parkInitDept(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
2161
|
+
}
|
|
2162
|
+
/**
|
|
2163
|
+
*
|
|
2164
|
+
* @summary 园区初始化-角色
|
|
2165
|
+
* @param {SettingApiParkInitRoleRequest} requestParameters Request parameters.
|
|
2166
|
+
* @param {*} [options] Override http request option.
|
|
2167
|
+
* @throws {RequiredError}
|
|
2168
|
+
* @memberof SettingApi
|
|
2169
|
+
*/
|
|
2170
|
+
parkInitRole(requestParameters, options) {
|
|
2171
|
+
return SettingApiFp(this.configuration).parkInitRole(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
2172
|
+
}
|
|
2173
|
+
/**
|
|
2174
|
+
*
|
|
2175
|
+
* @summary 园区初始化-工单部门查看权限
|
|
2176
|
+
* @param {SettingApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
|
|
2177
|
+
* @param {*} [options] Override http request option.
|
|
2178
|
+
* @throws {RequiredError}
|
|
2179
|
+
* @memberof SettingApi
|
|
2180
|
+
*/
|
|
2181
|
+
parkInitWorkOrderDeptSettings(requestParameters, options) {
|
|
2182
|
+
return SettingApiFp(this.configuration).parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
2183
|
+
}
|
|
2184
|
+
/**
|
|
2185
|
+
*
|
|
2186
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
2187
|
+
* @param {SettingApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
|
|
2188
|
+
* @param {*} [options] Override http request option.
|
|
2189
|
+
* @throws {RequiredError}
|
|
2190
|
+
* @memberof SettingApi
|
|
2191
|
+
*/
|
|
2192
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
|
|
2193
|
+
return SettingApiFp(this.configuration).parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
2194
|
+
}
|
|
2195
|
+
/**
|
|
2196
|
+
*
|
|
2197
|
+
* @summary 园区初始化-工单问题类型部门
|
|
2198
|
+
* @param {SettingApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
|
|
2199
|
+
* @param {*} [options] Override http request option.
|
|
2200
|
+
* @throws {RequiredError}
|
|
2201
|
+
* @memberof SettingApi
|
|
2202
|
+
*/
|
|
2203
|
+
parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
|
|
2204
|
+
return SettingApiFp(this.configuration).parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
2205
|
+
}
|
|
1792
2206
|
/**
|
|
1793
2207
|
*
|
|
1794
2208
|
* @summary 根据时间区间查询
|