@gizone/rrs-client 4.2.0-alpha.260 → 4.2.0-alpha.262
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/open-api-api.ts +26 -62
- package/dist/apis/open-api-api.d.ts +10 -34
- package/dist/apis/open-api-api.js +24 -39
- package/dist/esm/apis/open-api-api.d.ts +10 -34
- package/dist/esm/apis/open-api-api.js +24 -39
- package/dist/esm/models/get-user-wx200-response.d.ts +16 -16
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/period-detail-resp.d.ts +7 -0
- package/dist/esm/models/sync-equipment-status-vo.d.ts +2 -2
- package/dist/esm/models/sync-equipment-vo.d.ts +2 -2
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/get-user-wx200-response.d.ts +16 -16
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/period-detail-resp.d.ts +7 -0
- package/dist/models/sync-equipment-status-vo.d.ts +2 -2
- package/dist/models/sync-equipment-vo.d.ts +2 -2
- package/dist/models/sys-user.d.ts +4 -4
- package/models/get-user-wx200-response.ts +16 -16
- package/models/ipage-access-vo.ts +6 -6
- package/models/period-detail-resp.ts +9 -0
- package/models/sync-equipment-status-vo.ts +2 -2
- package/models/sync-equipment-vo.ts +2 -2
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
|
@@ -131,18 +131,14 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
131
131
|
/**
|
|
132
132
|
*
|
|
133
133
|
* @summary 批量新增设施设备
|
|
134
|
-
* @param {number} parkId
|
|
135
134
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
136
135
|
* @param {*} [options] Override http request option.
|
|
137
136
|
* @throws {RequiredError}
|
|
138
137
|
*/
|
|
139
|
-
openApiEquipmentBatchAdd: (
|
|
140
|
-
// verify required parameter 'parkId' is not null or undefined
|
|
141
|
-
assertParamExists('openApiEquipmentBatchAdd', 'parkId', parkId);
|
|
138
|
+
openApiEquipmentBatchAdd: (syncEquipmentVo_1, ...args_1) => __awaiter(this, [syncEquipmentVo_1, ...args_1], void 0, function* (syncEquipmentVo, options = {}) {
|
|
142
139
|
// verify required parameter 'syncEquipmentVo' is not null or undefined
|
|
143
140
|
assertParamExists('openApiEquipmentBatchAdd', 'syncEquipmentVo', syncEquipmentVo);
|
|
144
|
-
const localVarPath = `/openapi/v1/main/parks/
|
|
145
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
141
|
+
const localVarPath = `/openapi/v1/main/parks/equipment/batch`;
|
|
146
142
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
147
143
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
148
144
|
let baseOptions;
|
|
@@ -168,18 +164,14 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
168
164
|
/**
|
|
169
165
|
*
|
|
170
166
|
* @summary 批量更新设施设备状态
|
|
171
|
-
* @param {number} parkId
|
|
172
167
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
173
168
|
* @param {*} [options] Override http request option.
|
|
174
169
|
* @throws {RequiredError}
|
|
175
170
|
*/
|
|
176
|
-
openApiEquipmentBatchStatusSync: (
|
|
177
|
-
// verify required parameter 'parkId' is not null or undefined
|
|
178
|
-
assertParamExists('openApiEquipmentBatchStatusSync', 'parkId', parkId);
|
|
171
|
+
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo_1, ...args_1) => __awaiter(this, [syncEquipmentStatusVo_1, ...args_1], void 0, function* (syncEquipmentStatusVo, options = {}) {
|
|
179
172
|
// verify required parameter 'syncEquipmentStatusVo' is not null or undefined
|
|
180
173
|
assertParamExists('openApiEquipmentBatchStatusSync', 'syncEquipmentStatusVo', syncEquipmentStatusVo);
|
|
181
|
-
const localVarPath = `/openapi/v1/main/parks/
|
|
182
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
174
|
+
const localVarPath = `/openapi/v1/main/parks/equipment/batchStatusSync`;
|
|
183
175
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
184
176
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
185
177
|
let baseOptions;
|
|
@@ -205,18 +197,14 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
205
197
|
/**
|
|
206
198
|
*
|
|
207
199
|
* @summary 获取监控列表
|
|
208
|
-
* @param {
|
|
209
|
-
* @param {string} centerCode 中心编码(C码)
|
|
200
|
+
* @param {string} famParkCode 园区编码
|
|
210
201
|
* @param {*} [options] Override http request option.
|
|
211
202
|
* @throws {RequiredError}
|
|
212
203
|
*/
|
|
213
|
-
openApiSurveillanceList: (
|
|
214
|
-
// verify required parameter '
|
|
215
|
-
assertParamExists('openApiSurveillanceList', '
|
|
216
|
-
|
|
217
|
-
assertParamExists('openApiSurveillanceList', 'centerCode', centerCode);
|
|
218
|
-
const localVarPath = `/openapi/v1/main/parks/{parkId}/surveillance`
|
|
219
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
204
|
+
openApiSurveillanceList: (famParkCode_1, ...args_1) => __awaiter(this, [famParkCode_1, ...args_1], void 0, function* (famParkCode, options = {}) {
|
|
205
|
+
// verify required parameter 'famParkCode' is not null or undefined
|
|
206
|
+
assertParamExists('openApiSurveillanceList', 'famParkCode', famParkCode);
|
|
207
|
+
const localVarPath = `/openapi/v1/main/parks/surveillance`;
|
|
220
208
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
221
209
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
222
210
|
let baseOptions;
|
|
@@ -229,8 +217,8 @@ export const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
229
217
|
// authentication tokenScheme required
|
|
230
218
|
// http bearer authentication required
|
|
231
219
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
232
|
-
if (
|
|
233
|
-
localVarQueryParameter['
|
|
220
|
+
if (famParkCode !== undefined) {
|
|
221
|
+
localVarQueryParameter['famParkCode'] = famParkCode;
|
|
234
222
|
}
|
|
235
223
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
236
224
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -354,15 +342,14 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
354
342
|
/**
|
|
355
343
|
*
|
|
356
344
|
* @summary 批量新增设施设备
|
|
357
|
-
* @param {number} parkId
|
|
358
345
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
359
346
|
* @param {*} [options] Override http request option.
|
|
360
347
|
* @throws {RequiredError}
|
|
361
348
|
*/
|
|
362
|
-
openApiEquipmentBatchAdd(
|
|
349
|
+
openApiEquipmentBatchAdd(syncEquipmentVo, options) {
|
|
363
350
|
return __awaiter(this, void 0, void 0, function* () {
|
|
364
351
|
var _a, _b, _c;
|
|
365
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchAdd(
|
|
352
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchAdd(syncEquipmentVo, options);
|
|
366
353
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
367
354
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiEquipmentBatchAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
368
355
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -371,15 +358,14 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
371
358
|
/**
|
|
372
359
|
*
|
|
373
360
|
* @summary 批量更新设施设备状态
|
|
374
|
-
* @param {number} parkId
|
|
375
361
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
376
362
|
* @param {*} [options] Override http request option.
|
|
377
363
|
* @throws {RequiredError}
|
|
378
364
|
*/
|
|
379
|
-
openApiEquipmentBatchStatusSync(
|
|
365
|
+
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options) {
|
|
380
366
|
return __awaiter(this, void 0, void 0, function* () {
|
|
381
367
|
var _a, _b, _c;
|
|
382
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(
|
|
368
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options);
|
|
383
369
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
384
370
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiEquipmentBatchStatusSync']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
385
371
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -388,15 +374,14 @@ export const OpenApiApiFp = function (configuration) {
|
|
|
388
374
|
/**
|
|
389
375
|
*
|
|
390
376
|
* @summary 获取监控列表
|
|
391
|
-
* @param {
|
|
392
|
-
* @param {string} centerCode 中心编码(C码)
|
|
377
|
+
* @param {string} famParkCode 园区编码
|
|
393
378
|
* @param {*} [options] Override http request option.
|
|
394
379
|
* @throws {RequiredError}
|
|
395
380
|
*/
|
|
396
|
-
openApiSurveillanceList(
|
|
381
|
+
openApiSurveillanceList(famParkCode, options) {
|
|
397
382
|
return __awaiter(this, void 0, void 0, function* () {
|
|
398
383
|
var _a, _b, _c;
|
|
399
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSurveillanceList(
|
|
384
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSurveillanceList(famParkCode, options);
|
|
400
385
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
401
386
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['OpenApiApi.openApiSurveillanceList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
402
387
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -453,7 +438,7 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
453
438
|
* @throws {RequiredError}
|
|
454
439
|
*/
|
|
455
440
|
openApiEquipmentBatchAdd(requestParameters, options) {
|
|
456
|
-
return localVarFp.openApiEquipmentBatchAdd(requestParameters.
|
|
441
|
+
return localVarFp.openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(axios, basePath));
|
|
457
442
|
},
|
|
458
443
|
/**
|
|
459
444
|
*
|
|
@@ -463,7 +448,7 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
463
448
|
* @throws {RequiredError}
|
|
464
449
|
*/
|
|
465
450
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
466
|
-
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.
|
|
451
|
+
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
467
452
|
},
|
|
468
453
|
/**
|
|
469
454
|
*
|
|
@@ -473,7 +458,7 @@ export const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
473
458
|
* @throws {RequiredError}
|
|
474
459
|
*/
|
|
475
460
|
openApiSurveillanceList(requestParameters, options) {
|
|
476
|
-
return localVarFp.openApiSurveillanceList(requestParameters.
|
|
461
|
+
return localVarFp.openApiSurveillanceList(requestParameters.famParkCode, options).then((request) => request(axios, basePath));
|
|
477
462
|
},
|
|
478
463
|
/**
|
|
479
464
|
*
|
|
@@ -514,7 +499,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
514
499
|
* @memberof OpenApiApi
|
|
515
500
|
*/
|
|
516
501
|
openApiEquipmentBatchAdd(requestParameters, options) {
|
|
517
|
-
return OpenApiApiFp(this.configuration).openApiEquipmentBatchAdd(requestParameters.
|
|
502
|
+
return OpenApiApiFp(this.configuration).openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(this.axios, this.basePath));
|
|
518
503
|
}
|
|
519
504
|
/**
|
|
520
505
|
*
|
|
@@ -525,7 +510,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
525
510
|
* @memberof OpenApiApi
|
|
526
511
|
*/
|
|
527
512
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
528
|
-
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.
|
|
513
|
+
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
529
514
|
}
|
|
530
515
|
/**
|
|
531
516
|
*
|
|
@@ -536,7 +521,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
536
521
|
* @memberof OpenApiApi
|
|
537
522
|
*/
|
|
538
523
|
openApiSurveillanceList(requestParameters, options) {
|
|
539
|
-
return OpenApiApiFp(this.configuration).openApiSurveillanceList(requestParameters.
|
|
524
|
+
return OpenApiApiFp(this.configuration).openApiSurveillanceList(requestParameters.famParkCode, options).then((request) => request(this.axios, this.basePath));
|
|
540
525
|
}
|
|
541
526
|
/**
|
|
542
527
|
*
|
|
@@ -35,18 +35,6 @@ export interface GetUserWx200Response {
|
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
37
|
'trailerFields'?: object;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {GetUserWx200ResponseLocale}
|
|
41
|
-
* @memberof GetUserWx200Response
|
|
42
|
-
*/
|
|
43
|
-
'locale'?: GetUserWx200ResponseLocale;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {number}
|
|
47
|
-
* @memberof GetUserWx200Response
|
|
48
|
-
*/
|
|
49
|
-
'bufferSize'?: number;
|
|
50
38
|
/**
|
|
51
39
|
*
|
|
52
40
|
* @type {string}
|
|
@@ -67,10 +55,16 @@ export interface GetUserWx200Response {
|
|
|
67
55
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
68
56
|
/**
|
|
69
57
|
*
|
|
70
|
-
* @type {
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
71
59
|
* @memberof GetUserWx200Response
|
|
72
60
|
*/
|
|
73
|
-
'
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof GetUserWx200Response
|
|
66
|
+
*/
|
|
67
|
+
'bufferSize'?: number;
|
|
74
68
|
/**
|
|
75
69
|
*
|
|
76
70
|
* @type {number}
|
|
@@ -79,14 +73,20 @@ export interface GetUserWx200Response {
|
|
|
79
73
|
'contentLengthLong'?: number;
|
|
80
74
|
/**
|
|
81
75
|
*
|
|
82
|
-
* @type {
|
|
76
|
+
* @type {string}
|
|
83
77
|
* @memberof GetUserWx200Response
|
|
84
78
|
*/
|
|
85
|
-
'
|
|
79
|
+
'characterEncoding'?: string;
|
|
86
80
|
/**
|
|
87
81
|
*
|
|
88
82
|
* @type {object}
|
|
89
83
|
* @memberof GetUserWx200Response
|
|
90
84
|
*/
|
|
91
85
|
'writer'?: object;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof GetUserWx200Response
|
|
90
|
+
*/
|
|
91
|
+
'committed'?: boolean;
|
|
92
92
|
}
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { InspectionComp } from './inspection-comp';
|
|
13
13
|
import type { InspectionPoint } from './inspection-point';
|
|
14
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
14
15
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
15
16
|
import type { WorkOrderStatusEnum } from './work-order-status-enum';
|
|
16
17
|
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
@@ -201,6 +202,12 @@ export interface PeriodDetailResp {
|
|
|
201
202
|
* @memberof PeriodDetailResp
|
|
202
203
|
*/
|
|
203
204
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {PlanLevelEnum}
|
|
208
|
+
* @memberof PeriodDetailResp
|
|
209
|
+
*/
|
|
210
|
+
'planLevel'?: PlanLevelEnum;
|
|
204
211
|
}
|
|
205
212
|
export declare const PeriodDetailRespSamplingResultsEnum: {
|
|
206
213
|
readonly Zero: "ZERO";
|
|
@@ -17,11 +17,11 @@ import type { EquipmentStatus } from './equipment-status';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentStatusVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 园区编码
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentStatusVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'famParkCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统
|
|
27
27
|
* @type {string}
|
|
@@ -17,11 +17,11 @@ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 园区编码
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'famParkCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统 [资产:FAM]
|
|
27
27
|
* @type {string}
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {number}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cuserId'?: number;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {string}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cid'?: string;
|
|
383
383
|
}
|
|
@@ -35,18 +35,6 @@ export interface GetUserWx200Response {
|
|
|
35
35
|
* @memberof GetUserWx200Response
|
|
36
36
|
*/
|
|
37
37
|
'trailerFields'?: object;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {GetUserWx200ResponseLocale}
|
|
41
|
-
* @memberof GetUserWx200Response
|
|
42
|
-
*/
|
|
43
|
-
'locale'?: GetUserWx200ResponseLocale;
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
* @type {number}
|
|
47
|
-
* @memberof GetUserWx200Response
|
|
48
|
-
*/
|
|
49
|
-
'bufferSize'?: number;
|
|
50
38
|
/**
|
|
51
39
|
*
|
|
52
40
|
* @type {string}
|
|
@@ -67,10 +55,16 @@ export interface GetUserWx200Response {
|
|
|
67
55
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
68
56
|
/**
|
|
69
57
|
*
|
|
70
|
-
* @type {
|
|
58
|
+
* @type {GetUserWx200ResponseLocale}
|
|
71
59
|
* @memberof GetUserWx200Response
|
|
72
60
|
*/
|
|
73
|
-
'
|
|
61
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof GetUserWx200Response
|
|
66
|
+
*/
|
|
67
|
+
'bufferSize'?: number;
|
|
74
68
|
/**
|
|
75
69
|
*
|
|
76
70
|
* @type {number}
|
|
@@ -79,14 +73,20 @@ export interface GetUserWx200Response {
|
|
|
79
73
|
'contentLengthLong'?: number;
|
|
80
74
|
/**
|
|
81
75
|
*
|
|
82
|
-
* @type {
|
|
76
|
+
* @type {string}
|
|
83
77
|
* @memberof GetUserWx200Response
|
|
84
78
|
*/
|
|
85
|
-
'
|
|
79
|
+
'characterEncoding'?: string;
|
|
86
80
|
/**
|
|
87
81
|
*
|
|
88
82
|
* @type {object}
|
|
89
83
|
* @memberof GetUserWx200Response
|
|
90
84
|
*/
|
|
91
85
|
'writer'?: object;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof GetUserWx200Response
|
|
90
|
+
*/
|
|
91
|
+
'committed'?: boolean;
|
|
92
92
|
}
|
|
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
|
|
|
36
36
|
'records'?: Array<AccessVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageAccessVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
|
-
* @type {
|
|
45
|
+
* @type {number}
|
|
46
46
|
* @memberof IPageAccessVO
|
|
47
|
-
* @deprecated
|
|
48
47
|
*/
|
|
49
|
-
'
|
|
48
|
+
'pages'?: number;
|
|
50
49
|
/**
|
|
51
50
|
*
|
|
52
51
|
* @type {boolean}
|
|
53
52
|
* @memberof IPageAccessVO
|
|
53
|
+
* @deprecated
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'hitCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { InspectionComp } from './inspection-comp';
|
|
13
13
|
import type { InspectionPoint } from './inspection-point';
|
|
14
|
+
import type { PlanLevelEnum } from './plan-level-enum';
|
|
14
15
|
import type { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
15
16
|
import type { WorkOrderStatusEnum } from './work-order-status-enum';
|
|
16
17
|
import type { WorkOrderTypeEnum } from './work-order-type-enum';
|
|
@@ -201,6 +202,12 @@ export interface PeriodDetailResp {
|
|
|
201
202
|
* @memberof PeriodDetailResp
|
|
202
203
|
*/
|
|
203
204
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @type {PlanLevelEnum}
|
|
208
|
+
* @memberof PeriodDetailResp
|
|
209
|
+
*/
|
|
210
|
+
'planLevel'?: PlanLevelEnum;
|
|
204
211
|
}
|
|
205
212
|
export declare const PeriodDetailRespSamplingResultsEnum: {
|
|
206
213
|
readonly Zero: "ZERO";
|
|
@@ -17,11 +17,11 @@ import type { EquipmentStatus } from './equipment-status';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentStatusVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 园区编码
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentStatusVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'famParkCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统
|
|
27
27
|
* @type {string}
|
|
@@ -17,11 +17,11 @@ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
|
|
|
17
17
|
*/
|
|
18
18
|
export interface SyncEquipmentVo {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* 园区编码
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SyncEquipmentVo
|
|
23
23
|
*/
|
|
24
|
-
'
|
|
24
|
+
'famParkCode': string;
|
|
25
25
|
/**
|
|
26
26
|
* 来源系统 [资产:FAM]
|
|
27
27
|
* @type {string}
|
|
@@ -370,14 +370,14 @@ export interface SysUser {
|
|
|
370
370
|
'userAttachments'?: Array<SysUserAttachmentInfo>;
|
|
371
371
|
/**
|
|
372
372
|
*
|
|
373
|
-
* @type {
|
|
373
|
+
* @type {number}
|
|
374
374
|
* @memberof SysUser
|
|
375
375
|
*/
|
|
376
|
-
'
|
|
376
|
+
'cuserId'?: number;
|
|
377
377
|
/**
|
|
378
378
|
*
|
|
379
|
-
* @type {
|
|
379
|
+
* @type {string}
|
|
380
380
|
* @memberof SysUser
|
|
381
381
|
*/
|
|
382
|
-
'
|
|
382
|
+
'cid'?: string;
|
|
383
383
|
}
|
|
@@ -44,18 +44,6 @@ export interface GetUserWx200Response {
|
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
46
|
'trailerFields'?: object;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {GetUserWx200ResponseLocale}
|
|
50
|
-
* @memberof GetUserWx200Response
|
|
51
|
-
*/
|
|
52
|
-
'locale'?: GetUserWx200ResponseLocale;
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @type {number}
|
|
56
|
-
* @memberof GetUserWx200Response
|
|
57
|
-
*/
|
|
58
|
-
'bufferSize'?: number;
|
|
59
47
|
/**
|
|
60
48
|
*
|
|
61
49
|
* @type {string}
|
|
@@ -76,10 +64,16 @@ export interface GetUserWx200Response {
|
|
|
76
64
|
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
77
65
|
/**
|
|
78
66
|
*
|
|
79
|
-
* @type {
|
|
67
|
+
* @type {GetUserWx200ResponseLocale}
|
|
80
68
|
* @memberof GetUserWx200Response
|
|
81
69
|
*/
|
|
82
|
-
'
|
|
70
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof GetUserWx200Response
|
|
75
|
+
*/
|
|
76
|
+
'bufferSize'?: number;
|
|
83
77
|
/**
|
|
84
78
|
*
|
|
85
79
|
* @type {number}
|
|
@@ -88,15 +82,21 @@ export interface GetUserWx200Response {
|
|
|
88
82
|
'contentLengthLong'?: number;
|
|
89
83
|
/**
|
|
90
84
|
*
|
|
91
|
-
* @type {
|
|
85
|
+
* @type {string}
|
|
92
86
|
* @memberof GetUserWx200Response
|
|
93
87
|
*/
|
|
94
|
-
'
|
|
88
|
+
'characterEncoding'?: string;
|
|
95
89
|
/**
|
|
96
90
|
*
|
|
97
91
|
* @type {object}
|
|
98
92
|
* @memberof GetUserWx200Response
|
|
99
93
|
*/
|
|
100
94
|
'writer'?: object;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @type {boolean}
|
|
98
|
+
* @memberof GetUserWx200Response
|
|
99
|
+
*/
|
|
100
|
+
'committed'?: boolean;
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -43,23 +43,23 @@ export interface IPageAccessVO {
|
|
|
43
43
|
'records'?: Array<AccessVO>;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {
|
|
46
|
+
* @type {boolean}
|
|
47
47
|
* @memberof IPageAccessVO
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'searchCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageAccessVO
|
|
54
|
-
* @deprecated
|
|
55
54
|
*/
|
|
56
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
57
56
|
/**
|
|
58
57
|
*
|
|
59
58
|
* @type {boolean}
|
|
60
59
|
* @memberof IPageAccessVO
|
|
60
|
+
* @deprecated
|
|
61
61
|
*/
|
|
62
|
-
'
|
|
62
|
+
'hitCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -21,6 +21,9 @@ import type { InspectionComp } from './inspection-comp';
|
|
|
21
21
|
import type { InspectionPoint } from './inspection-point';
|
|
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 { WorkOrderDeptDTO } from './work-order-dept-dto';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -218,6 +221,12 @@ export interface PeriodDetailResp {
|
|
|
218
221
|
* @memberof PeriodDetailResp
|
|
219
222
|
*/
|
|
220
223
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {PlanLevelEnum}
|
|
227
|
+
* @memberof PeriodDetailResp
|
|
228
|
+
*/
|
|
229
|
+
'planLevel'?: PlanLevelEnum;
|
|
221
230
|
}
|
|
222
231
|
|
|
223
232
|
export const PeriodDetailRespSamplingResultsEnum = {
|
|
@@ -24,11 +24,11 @@ import type { EquipmentStatus } from './equipment-status';
|
|
|
24
24
|
*/
|
|
25
25
|
export interface SyncEquipmentStatusVo {
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* 园区编码
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof SyncEquipmentStatusVo
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'famParkCode': string;
|
|
32
32
|
/**
|
|
33
33
|
* 来源系统
|
|
34
34
|
* @type {string}
|
|
@@ -24,11 +24,11 @@ import type { SyncEquipmentVoEquipment } from './sync-equipment-vo-equipment';
|
|
|
24
24
|
*/
|
|
25
25
|
export interface SyncEquipmentVo {
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* 园区编码
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof SyncEquipmentVo
|
|
30
30
|
*/
|
|
31
|
-
'
|
|
31
|
+
'famParkCode': string;
|
|
32
32
|
/**
|
|
33
33
|
* 来源系统 [资产:FAM]
|
|
34
34
|
* @type {string}
|