@gizone/rrs-client 4.1.3-alpha.209 → 4.1.3-alpha.211

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.
@@ -99,6 +99,12 @@ export interface EquipmentExcelAddDTO {
99
99
  * @memberof EquipmentExcelAddDTO
100
100
  */
101
101
  'isPublicArea'?: string;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof EquipmentExcelAddDTO
106
+ */
107
+ 'equipmentCode'?: string;
102
108
  /**
103
109
  * 园区ID
104
110
  * @type {number}
@@ -19,22 +19,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {Array<string>}
22
+ * @type {number}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'headerNames'?: Array<string>;
25
+ 'status'?: number;
26
26
  /**
27
27
  *
28
- * @type {number}
28
+ * @type {Array<string>}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'status'?: number;
31
+ 'headerNames'?: Array<string>;
32
32
  /**
33
33
  *
34
34
  * @type {object}
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'trailerFields'?: object;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof GetUserWx200Response
42
+ */
43
+ 'bufferSize'?: number;
38
44
  /**
39
45
  *
40
46
  * @type {string}
@@ -53,12 +59,6 @@ export interface GetUserWx200Response {
53
59
  * @memberof GetUserWx200Response
54
60
  */
55
61
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
- /**
57
- *
58
- * @type {number}
59
- * @memberof GetUserWx200Response
60
- */
61
- 'bufferSize'?: number;
62
62
  /**
63
63
  *
64
64
  * @type {GetUserWx200ResponseLocale}
@@ -67,26 +67,26 @@ export interface GetUserWx200Response {
67
67
  'locale'?: GetUserWx200ResponseLocale;
68
68
  /**
69
69
  *
70
- * @type {boolean}
70
+ * @type {string}
71
71
  * @memberof GetUserWx200Response
72
72
  */
73
- 'committed'?: boolean;
73
+ 'characterEncoding'?: string;
74
74
  /**
75
75
  *
76
- * @type {object}
76
+ * @type {number}
77
77
  * @memberof GetUserWx200Response
78
78
  */
79
- 'writer'?: object;
79
+ 'contentLengthLong'?: number;
80
80
  /**
81
81
  *
82
- * @type {number}
82
+ * @type {boolean}
83
83
  * @memberof GetUserWx200Response
84
84
  */
85
- 'contentLengthLong'?: number;
85
+ 'committed'?: boolean;
86
86
  /**
87
87
  *
88
- * @type {string}
88
+ * @type {object}
89
89
  * @memberof GetUserWx200Response
90
90
  */
91
- 'characterEncoding'?: string;
91
+ 'writer'?: object;
92
92
  }
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {number}
39
+ * @type {boolean}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'pages'?: number;
42
+ 'searchCount'?: boolean;
43
43
  /**
44
44
  *
45
- * @type {boolean}
45
+ * @type {number}
46
46
  * @memberof IPageAccessVO
47
- * @deprecated
48
47
  */
49
- 'hitCount'?: boolean;
48
+ 'pages'?: number;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageAccessVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -363,14 +363,14 @@ export interface SysUser {
363
363
  'userNo'?: string;
364
364
  /**
365
365
  *
366
- * @type {number}
366
+ * @type {string}
367
367
  * @memberof SysUser
368
368
  */
369
- 'cuserId'?: number;
369
+ 'cid'?: string;
370
370
  /**
371
371
  *
372
- * @type {string}
372
+ * @type {number}
373
373
  * @memberof SysUser
374
374
  */
375
- 'cid'?: string;
375
+ 'cuserId'?: number;
376
376
  }
@@ -16,6 +16,7 @@
16
16
  */
17
17
  export declare const ThirdPartySystemEnum: {
18
18
  readonly Sqm: "SQM";
19
+ readonly Zhyq: "ZHYQ";
19
20
  readonly Fam: "FAM";
20
21
  };
21
22
  export type ThirdPartySystemEnum = typeof ThirdPartySystemEnum[keyof typeof ThirdPartySystemEnum];
@@ -18,5 +18,6 @@
18
18
  */
19
19
  export const ThirdPartySystemEnum = {
20
20
  Sqm: 'SQM',
21
+ Zhyq: 'ZHYQ',
21
22
  Fam: 'FAM'
22
23
  };
@@ -99,6 +99,12 @@ export interface EquipmentExcelAddDTO {
99
99
  * @memberof EquipmentExcelAddDTO
100
100
  */
101
101
  'isPublicArea'?: string;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof EquipmentExcelAddDTO
106
+ */
107
+ 'equipmentCode'?: string;
102
108
  /**
103
109
  * 园区ID
104
110
  * @type {number}
@@ -19,22 +19,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
19
19
  export interface GetUserWx200Response {
20
20
  /**
21
21
  *
22
- * @type {Array<string>}
22
+ * @type {number}
23
23
  * @memberof GetUserWx200Response
24
24
  */
25
- 'headerNames'?: Array<string>;
25
+ 'status'?: number;
26
26
  /**
27
27
  *
28
- * @type {number}
28
+ * @type {Array<string>}
29
29
  * @memberof GetUserWx200Response
30
30
  */
31
- 'status'?: number;
31
+ 'headerNames'?: Array<string>;
32
32
  /**
33
33
  *
34
34
  * @type {object}
35
35
  * @memberof GetUserWx200Response
36
36
  */
37
37
  'trailerFields'?: object;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof GetUserWx200Response
42
+ */
43
+ 'bufferSize'?: number;
38
44
  /**
39
45
  *
40
46
  * @type {string}
@@ -53,12 +59,6 @@ export interface GetUserWx200Response {
53
59
  * @memberof GetUserWx200Response
54
60
  */
55
61
  'outputStream'?: GetUserWx200ResponseOutputStream;
56
- /**
57
- *
58
- * @type {number}
59
- * @memberof GetUserWx200Response
60
- */
61
- 'bufferSize'?: number;
62
62
  /**
63
63
  *
64
64
  * @type {GetUserWx200ResponseLocale}
@@ -67,26 +67,26 @@ export interface GetUserWx200Response {
67
67
  'locale'?: GetUserWx200ResponseLocale;
68
68
  /**
69
69
  *
70
- * @type {boolean}
70
+ * @type {string}
71
71
  * @memberof GetUserWx200Response
72
72
  */
73
- 'committed'?: boolean;
73
+ 'characterEncoding'?: string;
74
74
  /**
75
75
  *
76
- * @type {object}
76
+ * @type {number}
77
77
  * @memberof GetUserWx200Response
78
78
  */
79
- 'writer'?: object;
79
+ 'contentLengthLong'?: number;
80
80
  /**
81
81
  *
82
- * @type {number}
82
+ * @type {boolean}
83
83
  * @memberof GetUserWx200Response
84
84
  */
85
- 'contentLengthLong'?: number;
85
+ 'committed'?: boolean;
86
86
  /**
87
87
  *
88
- * @type {string}
88
+ * @type {object}
89
89
  * @memberof GetUserWx200Response
90
90
  */
91
- 'characterEncoding'?: string;
91
+ 'writer'?: object;
92
92
  }
@@ -36,23 +36,23 @@ export interface IPageAccessVO {
36
36
  'records'?: Array<AccessVO>;
37
37
  /**
38
38
  *
39
- * @type {number}
39
+ * @type {boolean}
40
40
  * @memberof IPageAccessVO
41
41
  */
42
- 'pages'?: number;
42
+ 'searchCount'?: boolean;
43
43
  /**
44
44
  *
45
- * @type {boolean}
45
+ * @type {number}
46
46
  * @memberof IPageAccessVO
47
- * @deprecated
48
47
  */
49
- 'hitCount'?: boolean;
48
+ 'pages'?: number;
50
49
  /**
51
50
  *
52
51
  * @type {boolean}
53
52
  * @memberof IPageAccessVO
53
+ * @deprecated
54
54
  */
55
- 'searchCount'?: boolean;
55
+ 'hitCount'?: boolean;
56
56
  /**
57
57
  *
58
58
  * @type {number}
@@ -363,14 +363,14 @@ export interface SysUser {
363
363
  'userNo'?: string;
364
364
  /**
365
365
  *
366
- * @type {number}
366
+ * @type {string}
367
367
  * @memberof SysUser
368
368
  */
369
- 'cuserId'?: number;
369
+ 'cid'?: string;
370
370
  /**
371
371
  *
372
- * @type {string}
372
+ * @type {number}
373
373
  * @memberof SysUser
374
374
  */
375
- 'cid'?: string;
375
+ 'cuserId'?: number;
376
376
  }
@@ -16,6 +16,7 @@
16
16
  */
17
17
  export declare const ThirdPartySystemEnum: {
18
18
  readonly Sqm: "SQM";
19
+ readonly Zhyq: "ZHYQ";
19
20
  readonly Fam: "FAM";
20
21
  };
21
22
  export type ThirdPartySystemEnum = typeof ThirdPartySystemEnum[keyof typeof ThirdPartySystemEnum];
@@ -21,5 +21,6 @@ exports.ThirdPartySystemEnum = void 0;
21
21
  */
22
22
  exports.ThirdPartySystemEnum = {
23
23
  Sqm: 'SQM',
24
+ Zhyq: 'ZHYQ',
24
25
  Fam: 'FAM'
25
26
  };
@@ -104,6 +104,12 @@ export interface EquipmentExcelAddDTO {
104
104
  * @memberof EquipmentExcelAddDTO
105
105
  */
106
106
  'isPublicArea'?: string;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof EquipmentExcelAddDTO
111
+ */
112
+ 'equipmentCode'?: string;
107
113
  /**
108
114
  * 园区ID
109
115
  * @type {number}
@@ -28,22 +28,28 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
28
28
  export interface GetUserWx200Response {
29
29
  /**
30
30
  *
31
- * @type {Array<string>}
31
+ * @type {number}
32
32
  * @memberof GetUserWx200Response
33
33
  */
34
- 'headerNames'?: Array<string>;
34
+ 'status'?: number;
35
35
  /**
36
36
  *
37
- * @type {number}
37
+ * @type {Array<string>}
38
38
  * @memberof GetUserWx200Response
39
39
  */
40
- 'status'?: number;
40
+ 'headerNames'?: Array<string>;
41
41
  /**
42
42
  *
43
43
  * @type {object}
44
44
  * @memberof GetUserWx200Response
45
45
  */
46
46
  'trailerFields'?: object;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof GetUserWx200Response
51
+ */
52
+ 'bufferSize'?: number;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -62,12 +68,6 @@ export interface GetUserWx200Response {
62
68
  * @memberof GetUserWx200Response
63
69
  */
64
70
  'outputStream'?: GetUserWx200ResponseOutputStream;
65
- /**
66
- *
67
- * @type {number}
68
- * @memberof GetUserWx200Response
69
- */
70
- 'bufferSize'?: number;
71
71
  /**
72
72
  *
73
73
  * @type {GetUserWx200ResponseLocale}
@@ -76,27 +76,27 @@ export interface GetUserWx200Response {
76
76
  'locale'?: GetUserWx200ResponseLocale;
77
77
  /**
78
78
  *
79
- * @type {boolean}
79
+ * @type {string}
80
80
  * @memberof GetUserWx200Response
81
81
  */
82
- 'committed'?: boolean;
82
+ 'characterEncoding'?: string;
83
83
  /**
84
84
  *
85
- * @type {object}
85
+ * @type {number}
86
86
  * @memberof GetUserWx200Response
87
87
  */
88
- 'writer'?: object;
88
+ 'contentLengthLong'?: number;
89
89
  /**
90
90
  *
91
- * @type {number}
91
+ * @type {boolean}
92
92
  * @memberof GetUserWx200Response
93
93
  */
94
- 'contentLengthLong'?: number;
94
+ 'committed'?: boolean;
95
95
  /**
96
96
  *
97
- * @type {string}
97
+ * @type {object}
98
98
  * @memberof GetUserWx200Response
99
99
  */
100
- 'characterEncoding'?: string;
100
+ 'writer'?: object;
101
101
  }
102
102
 
@@ -43,23 +43,23 @@ export interface IPageAccessVO {
43
43
  'records'?: Array<AccessVO>;
44
44
  /**
45
45
  *
46
- * @type {number}
46
+ * @type {boolean}
47
47
  * @memberof IPageAccessVO
48
48
  */
49
- 'pages'?: number;
49
+ 'searchCount'?: boolean;
50
50
  /**
51
51
  *
52
- * @type {boolean}
52
+ * @type {number}
53
53
  * @memberof IPageAccessVO
54
- * @deprecated
55
54
  */
56
- 'hitCount'?: boolean;
55
+ 'pages'?: number;
57
56
  /**
58
57
  *
59
58
  * @type {boolean}
60
59
  * @memberof IPageAccessVO
60
+ * @deprecated
61
61
  */
62
- 'searchCount'?: boolean;
62
+ 'hitCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
@@ -370,15 +370,15 @@ export interface SysUser {
370
370
  'userNo'?: string;
371
371
  /**
372
372
  *
373
- * @type {number}
373
+ * @type {string}
374
374
  * @memberof SysUser
375
375
  */
376
- 'cuserId'?: number;
376
+ 'cid'?: string;
377
377
  /**
378
378
  *
379
- * @type {string}
379
+ * @type {number}
380
380
  * @memberof SysUser
381
381
  */
382
- 'cid'?: string;
382
+ 'cuserId'?: number;
383
383
  }
384
384
 
@@ -22,6 +22,7 @@
22
22
 
23
23
  export const ThirdPartySystemEnum = {
24
24
  Sqm: 'SQM',
25
+ Zhyq: 'ZHYQ',
25
26
  Fam: 'FAM'
26
27
  } as const;
27
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.3-alpha.209",
3
+ "version": "4.1.3-alpha.211",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {