@gizone/rrs-client 4.2.9-alpha.523 → 4.2.9-alpha.524

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.
@@ -52,4 +52,16 @@ export interface InspectionPoint {
52
52
  * @memberof InspectionPoint
53
53
  */
54
54
  'relatedEquipmentIds'?: Array<number>;
55
+ /**
56
+ * 是否抽检 0:未抽检 1:合格 2:不合格
57
+ * @type {string}
58
+ * @memberof InspectionPoint
59
+ */
60
+ 'checkStatus'?: InspectionPointCheckStatusEnum;
55
61
  }
62
+ export declare const InspectionPointCheckStatusEnum: {
63
+ readonly NotCheck: "NOT_CHECK";
64
+ readonly Pass: "PASS";
65
+ readonly Fail: "FAIL";
66
+ };
67
+ export type InspectionPointCheckStatusEnum = typeof InspectionPointCheckStatusEnum[keyof typeof InspectionPointCheckStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const InspectionPointCheckStatusEnum = {
15
+ NotCheck: 'NOT_CHECK',
16
+ Pass: 'PASS',
17
+ Fail: 'FAIL'
18
+ };
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
389
+ 'cuserId'?: number;
390
390
  }
@@ -52,4 +52,16 @@ export interface InspectionPoint {
52
52
  * @memberof InspectionPoint
53
53
  */
54
54
  'relatedEquipmentIds'?: Array<number>;
55
+ /**
56
+ * 是否抽检 0:未抽检 1:合格 2:不合格
57
+ * @type {string}
58
+ * @memberof InspectionPoint
59
+ */
60
+ 'checkStatus'?: InspectionPointCheckStatusEnum;
55
61
  }
62
+ export declare const InspectionPointCheckStatusEnum: {
63
+ readonly NotCheck: "NOT_CHECK";
64
+ readonly Pass: "PASS";
65
+ readonly Fail: "FAIL";
66
+ };
67
+ export type InspectionPointCheckStatusEnum = typeof InspectionPointCheckStatusEnum[keyof typeof InspectionPointCheckStatusEnum];
@@ -13,3 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.InspectionPointCheckStatusEnum = void 0;
17
+ exports.InspectionPointCheckStatusEnum = {
18
+ NotCheck: 'NOT_CHECK',
19
+ Pass: 'PASS',
20
+ Fail: 'FAIL'
21
+ };
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {number}
380
+ * @type {string}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cuserId'?: number;
383
+ 'cid'?: string;
384
384
  /**
385
385
  *
386
- * @type {string}
386
+ * @type {number}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cid'?: string;
389
+ 'cuserId'?: number;
390
390
  }
@@ -59,5 +59,20 @@ export interface InspectionPoint {
59
59
  * @memberof InspectionPoint
60
60
  */
61
61
  'relatedEquipmentIds'?: Array<number>;
62
+ /**
63
+ * 是否抽检 0:未抽检 1:合格 2:不合格
64
+ * @type {string}
65
+ * @memberof InspectionPoint
66
+ */
67
+ 'checkStatus'?: InspectionPointCheckStatusEnum;
62
68
  }
63
69
 
70
+ export const InspectionPointCheckStatusEnum = {
71
+ NotCheck: 'NOT_CHECK',
72
+ Pass: 'PASS',
73
+ Fail: 'FAIL'
74
+ } as const;
75
+
76
+ export type InspectionPointCheckStatusEnum = typeof InspectionPointCheckStatusEnum[keyof typeof InspectionPointCheckStatusEnum];
77
+
78
+
@@ -388,16 +388,16 @@ export interface SysUser {
388
388
  'sourceUserId'?: string;
389
389
  /**
390
390
  *
391
- * @type {number}
391
+ * @type {string}
392
392
  * @memberof SysUser
393
393
  */
394
- 'cuserId'?: number;
394
+ 'cid'?: string;
395
395
  /**
396
396
  *
397
- * @type {string}
397
+ * @type {number}
398
398
  * @memberof SysUser
399
399
  */
400
- 'cid'?: string;
400
+ 'cuserId'?: number;
401
401
  }
402
402
 
403
403
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.9-alpha.523",
3
+ "version": "4.2.9-alpha.524",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {