@gizone/rrs-client 4.2.5-alpha.415 → 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/README.md +2 -2
- package/apis/park-api.ts +524 -0
- package/apis/setting-api.ts +522 -0
- package/configuration.ts +1 -1
- 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/configuration.js +1 -1
- 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/dist/esm/configuration.js +1 -1
- package/dist/esm/models/system-user-msg-source-type-enum.d.ts +2 -0
- package/dist/esm/models/system-user-msg-source-type-enum.js +3 -1
- package/dist/models/system-user-msg-source-type-enum.d.ts +2 -0
- package/dist/models/system-user-msg-source-type-enum.js +3 -1
- package/models/system-user-msg-source-type-enum.ts +3 -1
- package/package.json +1 -1
|
@@ -146,6 +146,198 @@ export const ParkApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
options: localVarRequestOptions,
|
|
147
147
|
};
|
|
148
148
|
}),
|
|
149
|
+
/**
|
|
150
|
+
*
|
|
151
|
+
* @summary 园区初始化
|
|
152
|
+
* @param {number} parkId
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
parkInit: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
157
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
158
|
+
assertParamExists('parkInit', 'parkId', parkId);
|
|
159
|
+
const localVarPath = `/park/{parkId}/init`
|
|
160
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
161
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
162
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
163
|
+
let baseOptions;
|
|
164
|
+
if (configuration) {
|
|
165
|
+
baseOptions = configuration.baseOptions;
|
|
166
|
+
}
|
|
167
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
168
|
+
const localVarHeaderParameter = {};
|
|
169
|
+
const localVarQueryParameter = {};
|
|
170
|
+
// authentication tokenScheme required
|
|
171
|
+
// http bearer authentication required
|
|
172
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
173
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
174
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
175
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
176
|
+
return {
|
|
177
|
+
url: toPathString(localVarUrlObj),
|
|
178
|
+
options: localVarRequestOptions,
|
|
179
|
+
};
|
|
180
|
+
}),
|
|
181
|
+
/**
|
|
182
|
+
*
|
|
183
|
+
* @summary 园区初始化-部门
|
|
184
|
+
* @param {number} parkId
|
|
185
|
+
* @param {*} [options] Override http request option.
|
|
186
|
+
* @throws {RequiredError}
|
|
187
|
+
*/
|
|
188
|
+
parkInitDept: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
189
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
190
|
+
assertParamExists('parkInitDept', 'parkId', parkId);
|
|
191
|
+
const localVarPath = `/park/{parkId}/init/dept`
|
|
192
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
193
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
194
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
195
|
+
let baseOptions;
|
|
196
|
+
if (configuration) {
|
|
197
|
+
baseOptions = configuration.baseOptions;
|
|
198
|
+
}
|
|
199
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
200
|
+
const localVarHeaderParameter = {};
|
|
201
|
+
const localVarQueryParameter = {};
|
|
202
|
+
// authentication tokenScheme required
|
|
203
|
+
// http bearer authentication required
|
|
204
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
205
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
206
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
207
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
208
|
+
return {
|
|
209
|
+
url: toPathString(localVarUrlObj),
|
|
210
|
+
options: localVarRequestOptions,
|
|
211
|
+
};
|
|
212
|
+
}),
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @summary 园区初始化-角色
|
|
216
|
+
* @param {number} parkId
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
parkInitRole: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
221
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
222
|
+
assertParamExists('parkInitRole', 'parkId', parkId);
|
|
223
|
+
const localVarPath = `/park/{parkId}/init/role`
|
|
224
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
225
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
226
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
227
|
+
let baseOptions;
|
|
228
|
+
if (configuration) {
|
|
229
|
+
baseOptions = configuration.baseOptions;
|
|
230
|
+
}
|
|
231
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
232
|
+
const localVarHeaderParameter = {};
|
|
233
|
+
const localVarQueryParameter = {};
|
|
234
|
+
// authentication tokenScheme required
|
|
235
|
+
// http bearer authentication required
|
|
236
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
237
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
238
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
239
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
240
|
+
return {
|
|
241
|
+
url: toPathString(localVarUrlObj),
|
|
242
|
+
options: localVarRequestOptions,
|
|
243
|
+
};
|
|
244
|
+
}),
|
|
245
|
+
/**
|
|
246
|
+
*
|
|
247
|
+
* @summary 园区初始化-工单部门查看权限
|
|
248
|
+
* @param {number} parkId
|
|
249
|
+
* @param {*} [options] Override http request option.
|
|
250
|
+
* @throws {RequiredError}
|
|
251
|
+
*/
|
|
252
|
+
parkInitWorkOrderDeptSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
253
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
254
|
+
assertParamExists('parkInitWorkOrderDeptSettings', 'parkId', parkId);
|
|
255
|
+
const localVarPath = `/park/{parkId}/init/workOrderDeptSettings`
|
|
256
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
257
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
258
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
259
|
+
let baseOptions;
|
|
260
|
+
if (configuration) {
|
|
261
|
+
baseOptions = configuration.baseOptions;
|
|
262
|
+
}
|
|
263
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
264
|
+
const localVarHeaderParameter = {};
|
|
265
|
+
const localVarQueryParameter = {};
|
|
266
|
+
// authentication tokenScheme required
|
|
267
|
+
// http bearer authentication required
|
|
268
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
269
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
270
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
271
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
272
|
+
return {
|
|
273
|
+
url: toPathString(localVarUrlObj),
|
|
274
|
+
options: localVarRequestOptions,
|
|
275
|
+
};
|
|
276
|
+
}),
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
280
|
+
* @param {number} parkId
|
|
281
|
+
* @param {*} [options] Override http request option.
|
|
282
|
+
* @throws {RequiredError}
|
|
283
|
+
*/
|
|
284
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
285
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
286
|
+
assertParamExists('parkInitWorkOrderIssueTypeExecutionTimeSettings', 'parkId', parkId);
|
|
287
|
+
const localVarPath = `/park/{parkId}/init/workOrderIssueTypeExecutionTimeSettings`
|
|
288
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
289
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
290
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
291
|
+
let baseOptions;
|
|
292
|
+
if (configuration) {
|
|
293
|
+
baseOptions = configuration.baseOptions;
|
|
294
|
+
}
|
|
295
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
296
|
+
const localVarHeaderParameter = {};
|
|
297
|
+
const localVarQueryParameter = {};
|
|
298
|
+
// authentication tokenScheme required
|
|
299
|
+
// http bearer authentication required
|
|
300
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
301
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
302
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
303
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
304
|
+
return {
|
|
305
|
+
url: toPathString(localVarUrlObj),
|
|
306
|
+
options: localVarRequestOptions,
|
|
307
|
+
};
|
|
308
|
+
}),
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
311
|
+
* @summary 园区初始化-工单问题类型部门
|
|
312
|
+
* @param {number} parkId
|
|
313
|
+
* @param {*} [options] Override http request option.
|
|
314
|
+
* @throws {RequiredError}
|
|
315
|
+
*/
|
|
316
|
+
parkInitWorkOrderIssueTypeSettings: (parkId_1, ...args_1) => __awaiter(this, [parkId_1, ...args_1], void 0, function* (parkId, options = {}) {
|
|
317
|
+
// verify required parameter 'parkId' is not null or undefined
|
|
318
|
+
assertParamExists('parkInitWorkOrderIssueTypeSettings', 'parkId', parkId);
|
|
319
|
+
const localVarPath = `/park/{parkId}/init/workOrderIssueTypeSettings`
|
|
320
|
+
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
321
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
322
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
323
|
+
let baseOptions;
|
|
324
|
+
if (configuration) {
|
|
325
|
+
baseOptions = configuration.baseOptions;
|
|
326
|
+
}
|
|
327
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
328
|
+
const localVarHeaderParameter = {};
|
|
329
|
+
const localVarQueryParameter = {};
|
|
330
|
+
// authentication tokenScheme required
|
|
331
|
+
// http bearer authentication required
|
|
332
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
333
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
334
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
335
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
336
|
+
return {
|
|
337
|
+
url: toPathString(localVarUrlObj),
|
|
338
|
+
options: localVarRequestOptions,
|
|
339
|
+
};
|
|
340
|
+
}),
|
|
149
341
|
/**
|
|
150
342
|
*
|
|
151
343
|
* @summary 查询列表
|
|
@@ -239,6 +431,102 @@ export const ParkApiFp = function (configuration) {
|
|
|
239
431
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
240
432
|
});
|
|
241
433
|
},
|
|
434
|
+
/**
|
|
435
|
+
*
|
|
436
|
+
* @summary 园区初始化
|
|
437
|
+
* @param {number} parkId
|
|
438
|
+
* @param {*} [options] Override http request option.
|
|
439
|
+
* @throws {RequiredError}
|
|
440
|
+
*/
|
|
441
|
+
parkInit(parkId, options) {
|
|
442
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
443
|
+
var _a, _b, _c;
|
|
444
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInit(parkId, options);
|
|
445
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
446
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ParkApi.parkInit']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
447
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
448
|
+
});
|
|
449
|
+
},
|
|
450
|
+
/**
|
|
451
|
+
*
|
|
452
|
+
* @summary 园区初始化-部门
|
|
453
|
+
* @param {number} parkId
|
|
454
|
+
* @param {*} [options] Override http request option.
|
|
455
|
+
* @throws {RequiredError}
|
|
456
|
+
*/
|
|
457
|
+
parkInitDept(parkId, options) {
|
|
458
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
459
|
+
var _a, _b, _c;
|
|
460
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitDept(parkId, options);
|
|
461
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
462
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ParkApi.parkInitDept']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
463
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
464
|
+
});
|
|
465
|
+
},
|
|
466
|
+
/**
|
|
467
|
+
*
|
|
468
|
+
* @summary 园区初始化-角色
|
|
469
|
+
* @param {number} parkId
|
|
470
|
+
* @param {*} [options] Override http request option.
|
|
471
|
+
* @throws {RequiredError}
|
|
472
|
+
*/
|
|
473
|
+
parkInitRole(parkId, options) {
|
|
474
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
475
|
+
var _a, _b, _c;
|
|
476
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitRole(parkId, options);
|
|
477
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
478
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ParkApi.parkInitRole']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
479
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
480
|
+
});
|
|
481
|
+
},
|
|
482
|
+
/**
|
|
483
|
+
*
|
|
484
|
+
* @summary 园区初始化-工单部门查看权限
|
|
485
|
+
* @param {number} parkId
|
|
486
|
+
* @param {*} [options] Override http request option.
|
|
487
|
+
* @throws {RequiredError}
|
|
488
|
+
*/
|
|
489
|
+
parkInitWorkOrderDeptSettings(parkId, options) {
|
|
490
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
491
|
+
var _a, _b, _c;
|
|
492
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderDeptSettings(parkId, options);
|
|
493
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
494
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ParkApi.parkInitWorkOrderDeptSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
495
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
496
|
+
});
|
|
497
|
+
},
|
|
498
|
+
/**
|
|
499
|
+
*
|
|
500
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
501
|
+
* @param {number} parkId
|
|
502
|
+
* @param {*} [options] Override http request option.
|
|
503
|
+
* @throws {RequiredError}
|
|
504
|
+
*/
|
|
505
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options) {
|
|
506
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
507
|
+
var _a, _b, _c;
|
|
508
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeExecutionTimeSettings(parkId, options);
|
|
509
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
510
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ParkApi.parkInitWorkOrderIssueTypeExecutionTimeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
511
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
512
|
+
});
|
|
513
|
+
},
|
|
514
|
+
/**
|
|
515
|
+
*
|
|
516
|
+
* @summary 园区初始化-工单问题类型部门
|
|
517
|
+
* @param {number} parkId
|
|
518
|
+
* @param {*} [options] Override http request option.
|
|
519
|
+
* @throws {RequiredError}
|
|
520
|
+
*/
|
|
521
|
+
parkInitWorkOrderIssueTypeSettings(parkId, options) {
|
|
522
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
523
|
+
var _a, _b, _c;
|
|
524
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.parkInitWorkOrderIssueTypeSettings(parkId, options);
|
|
525
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
526
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ParkApi.parkInitWorkOrderIssueTypeSettings']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
527
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
528
|
+
});
|
|
529
|
+
},
|
|
242
530
|
/**
|
|
243
531
|
*
|
|
244
532
|
* @summary 查询列表
|
|
@@ -294,6 +582,66 @@ export const ParkApiFactory = function (configuration, basePath, axios) {
|
|
|
294
582
|
deptConfigSelectByParkAndKey(requestParameters, options) {
|
|
295
583
|
return localVarFp.deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(axios, basePath));
|
|
296
584
|
},
|
|
585
|
+
/**
|
|
586
|
+
*
|
|
587
|
+
* @summary 园区初始化
|
|
588
|
+
* @param {ParkApiParkInitRequest} requestParameters Request parameters.
|
|
589
|
+
* @param {*} [options] Override http request option.
|
|
590
|
+
* @throws {RequiredError}
|
|
591
|
+
*/
|
|
592
|
+
parkInit(requestParameters, options) {
|
|
593
|
+
return localVarFp.parkInit(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
594
|
+
},
|
|
595
|
+
/**
|
|
596
|
+
*
|
|
597
|
+
* @summary 园区初始化-部门
|
|
598
|
+
* @param {ParkApiParkInitDeptRequest} requestParameters Request parameters.
|
|
599
|
+
* @param {*} [options] Override http request option.
|
|
600
|
+
* @throws {RequiredError}
|
|
601
|
+
*/
|
|
602
|
+
parkInitDept(requestParameters, options) {
|
|
603
|
+
return localVarFp.parkInitDept(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
604
|
+
},
|
|
605
|
+
/**
|
|
606
|
+
*
|
|
607
|
+
* @summary 园区初始化-角色
|
|
608
|
+
* @param {ParkApiParkInitRoleRequest} requestParameters Request parameters.
|
|
609
|
+
* @param {*} [options] Override http request option.
|
|
610
|
+
* @throws {RequiredError}
|
|
611
|
+
*/
|
|
612
|
+
parkInitRole(requestParameters, options) {
|
|
613
|
+
return localVarFp.parkInitRole(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
614
|
+
},
|
|
615
|
+
/**
|
|
616
|
+
*
|
|
617
|
+
* @summary 园区初始化-工单部门查看权限
|
|
618
|
+
* @param {ParkApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
|
|
619
|
+
* @param {*} [options] Override http request option.
|
|
620
|
+
* @throws {RequiredError}
|
|
621
|
+
*/
|
|
622
|
+
parkInitWorkOrderDeptSettings(requestParameters, options) {
|
|
623
|
+
return localVarFp.parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
624
|
+
},
|
|
625
|
+
/**
|
|
626
|
+
*
|
|
627
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
628
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
|
|
629
|
+
* @param {*} [options] Override http request option.
|
|
630
|
+
* @throws {RequiredError}
|
|
631
|
+
*/
|
|
632
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
|
|
633
|
+
return localVarFp.parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
634
|
+
},
|
|
635
|
+
/**
|
|
636
|
+
*
|
|
637
|
+
* @summary 园区初始化-工单问题类型部门
|
|
638
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
|
|
639
|
+
* @param {*} [options] Override http request option.
|
|
640
|
+
* @throws {RequiredError}
|
|
641
|
+
*/
|
|
642
|
+
parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
|
|
643
|
+
return localVarFp.parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(axios, basePath));
|
|
644
|
+
},
|
|
297
645
|
/**
|
|
298
646
|
*
|
|
299
647
|
* @summary 查询列表
|
|
@@ -346,6 +694,72 @@ export class ParkApi extends BaseAPI {
|
|
|
346
694
|
deptConfigSelectByParkAndKey(requestParameters, options) {
|
|
347
695
|
return ParkApiFp(this.configuration).deptConfigSelectByParkAndKey(requestParameters.deptId, requestParameters.configKey, options).then((request) => request(this.axios, this.basePath));
|
|
348
696
|
}
|
|
697
|
+
/**
|
|
698
|
+
*
|
|
699
|
+
* @summary 园区初始化
|
|
700
|
+
* @param {ParkApiParkInitRequest} requestParameters Request parameters.
|
|
701
|
+
* @param {*} [options] Override http request option.
|
|
702
|
+
* @throws {RequiredError}
|
|
703
|
+
* @memberof ParkApi
|
|
704
|
+
*/
|
|
705
|
+
parkInit(requestParameters, options) {
|
|
706
|
+
return ParkApiFp(this.configuration).parkInit(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
707
|
+
}
|
|
708
|
+
/**
|
|
709
|
+
*
|
|
710
|
+
* @summary 园区初始化-部门
|
|
711
|
+
* @param {ParkApiParkInitDeptRequest} requestParameters Request parameters.
|
|
712
|
+
* @param {*} [options] Override http request option.
|
|
713
|
+
* @throws {RequiredError}
|
|
714
|
+
* @memberof ParkApi
|
|
715
|
+
*/
|
|
716
|
+
parkInitDept(requestParameters, options) {
|
|
717
|
+
return ParkApiFp(this.configuration).parkInitDept(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
718
|
+
}
|
|
719
|
+
/**
|
|
720
|
+
*
|
|
721
|
+
* @summary 园区初始化-角色
|
|
722
|
+
* @param {ParkApiParkInitRoleRequest} requestParameters Request parameters.
|
|
723
|
+
* @param {*} [options] Override http request option.
|
|
724
|
+
* @throws {RequiredError}
|
|
725
|
+
* @memberof ParkApi
|
|
726
|
+
*/
|
|
727
|
+
parkInitRole(requestParameters, options) {
|
|
728
|
+
return ParkApiFp(this.configuration).parkInitRole(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
*
|
|
732
|
+
* @summary 园区初始化-工单部门查看权限
|
|
733
|
+
* @param {ParkApiParkInitWorkOrderDeptSettingsRequest} requestParameters Request parameters.
|
|
734
|
+
* @param {*} [options] Override http request option.
|
|
735
|
+
* @throws {RequiredError}
|
|
736
|
+
* @memberof ParkApi
|
|
737
|
+
*/
|
|
738
|
+
parkInitWorkOrderDeptSettings(requestParameters, options) {
|
|
739
|
+
return ParkApiFp(this.configuration).parkInitWorkOrderDeptSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
740
|
+
}
|
|
741
|
+
/**
|
|
742
|
+
*
|
|
743
|
+
* @summary 园区初始化-工单问题类型执行时效
|
|
744
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeExecutionTimeSettingsRequest} requestParameters Request parameters.
|
|
745
|
+
* @param {*} [options] Override http request option.
|
|
746
|
+
* @throws {RequiredError}
|
|
747
|
+
* @memberof ParkApi
|
|
748
|
+
*/
|
|
749
|
+
parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters, options) {
|
|
750
|
+
return ParkApiFp(this.configuration).parkInitWorkOrderIssueTypeExecutionTimeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
751
|
+
}
|
|
752
|
+
/**
|
|
753
|
+
*
|
|
754
|
+
* @summary 园区初始化-工单问题类型部门
|
|
755
|
+
* @param {ParkApiParkInitWorkOrderIssueTypeSettingsRequest} requestParameters Request parameters.
|
|
756
|
+
* @param {*} [options] Override http request option.
|
|
757
|
+
* @throws {RequiredError}
|
|
758
|
+
* @memberof ParkApi
|
|
759
|
+
*/
|
|
760
|
+
parkInitWorkOrderIssueTypeSettings(requestParameters, options) {
|
|
761
|
+
return ParkApiFp(this.configuration).parkInitWorkOrderIssueTypeSettings(requestParameters.parkId, options).then((request) => request(this.axios, this.basePath));
|
|
762
|
+
}
|
|
349
763
|
/**
|
|
350
764
|
*
|
|
351
765
|
* @summary 查询列表
|