@gizone/rrs-client 4.1.3-alpha.198 → 4.1.3-alpha.199

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.
@@ -41,12 +41,6 @@ export interface IPageAccessVO {
41
41
  * @memberof IPageAccessVO
42
42
  */
43
43
  'records'?: Array<AccessVO>;
44
- /**
45
- *
46
- * @type {boolean}
47
- * @memberof IPageAccessVO
48
- */
49
- 'searchCount'?: boolean;
50
44
  /**
51
45
  *
52
46
  * @type {number}
@@ -60,6 +54,12 @@ export interface IPageAccessVO {
60
54
  * @deprecated
61
55
  */
62
56
  'hitCount'?: boolean;
57
+ /**
58
+ *
59
+ * @type {boolean}
60
+ * @memberof IPageAccessVO
61
+ */
62
+ 'searchCount'?: boolean;
63
63
  /**
64
64
  *
65
65
  * @type {number}
package/models/park.ts CHANGED
@@ -24,7 +24,7 @@ import type { ParkPlatFormEnum } from './park-plat-form-enum';
24
24
  */
25
25
  export interface Park {
26
26
  /**
27
- * 园区id
27
+ * 园区ID
28
28
  * @type {number}
29
29
  * @memberof Park
30
30
  */
@@ -35,12 +35,6 @@ export interface Park {
35
35
  * @memberof Park
36
36
  */
37
37
  'parkName'?: string;
38
- /**
39
- * 所属中心
40
- * @type {string}
41
- * @memberof Park
42
- */
43
- 'center'?: string;
44
38
  /**
45
39
  *
46
40
  * @type {ParkPlatFormEnum}
@@ -48,11 +42,11 @@ export interface Park {
48
42
  */
49
43
  'platform'?: ParkPlatFormEnum;
50
44
  /**
51
- * 所属园区
45
+ * 中心
52
46
  * @type {string}
53
47
  * @memberof Park
54
48
  */
55
- 'srmPark'?: string;
49
+ 'center'?: string;
56
50
  }
57
51
 
58
52
 
@@ -30,6 +30,9 @@ import type { InstallationBodyEnum } from './installation-body-enum';
30
30
  import type { IotDeviceStatusEnum } from './iot-device-status-enum';
31
31
  // May contain unused imports in some cases
32
32
  // @ts-ignore
33
+ import type { Park } from './park';
34
+ // May contain unused imports in some cases
35
+ // @ts-ignore
33
36
  import type { Space } from './space';
34
37
 
35
38
  /**
@@ -158,6 +161,12 @@ export interface SurveillanceDetailsDto {
158
161
  * @memberof SurveillanceDetailsDto
159
162
  */
160
163
  'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
164
+ /**
165
+ *
166
+ * @type {Park}
167
+ * @memberof SurveillanceDetailsDto
168
+ */
169
+ 'park'?: Park;
161
170
  }
162
171
 
163
172
 
@@ -364,15 +364,15 @@ export interface SysUser {
364
364
  'supplierId'?: number;
365
365
  /**
366
366
  *
367
- * @type {string}
367
+ * @type {number}
368
368
  * @memberof SysUser
369
369
  */
370
- 'cid'?: string;
370
+ 'cuserId'?: number;
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.1.3-alpha.198",
3
+ "version": "4.1.3-alpha.199",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {