@gizone/rrs-client 4.2.7-alpha.431 → 4.2.7-alpha.432

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.
Files changed (35) hide show
  1. package/.openapi-generator/FILES +4 -0
  2. package/apis/dashboard-api.ts +118 -77
  3. package/dist/apis/dashboard-api.d.ts +61 -44
  4. package/dist/apis/dashboard-api.js +91 -43
  5. package/dist/esm/apis/dashboard-api.d.ts +61 -44
  6. package/dist/esm/apis/dashboard-api.js +91 -43
  7. package/dist/esm/models/dashboard-base-search-dto.d.ts +36 -0
  8. package/dist/esm/models/dashboard-base-search-dto.js +14 -0
  9. package/dist/esm/models/dashboard-equipment-search-dto.d.ts +3 -3
  10. package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.d.ts +60 -0
  11. package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.js +14 -0
  12. package/dist/esm/models/dashboard-surveillance-search-dto.d.ts +49 -0
  13. package/dist/esm/models/dashboard-surveillance-search-dto.js +14 -0
  14. package/dist/esm/models/index.d.ts +4 -0
  15. package/dist/esm/models/index.js +4 -0
  16. package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +62 -0
  17. package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.js +14 -0
  18. package/dist/models/dashboard-base-search-dto.d.ts +36 -0
  19. package/dist/models/dashboard-base-search-dto.js +15 -0
  20. package/dist/models/dashboard-equipment-search-dto.d.ts +3 -3
  21. package/dist/models/dashboard-surveillance-park-group-stats-vo.d.ts +60 -0
  22. package/dist/models/dashboard-surveillance-park-group-stats-vo.js +15 -0
  23. package/dist/models/dashboard-surveillance-search-dto.d.ts +49 -0
  24. package/dist/models/dashboard-surveillance-search-dto.js +15 -0
  25. package/dist/models/index.d.ts +4 -0
  26. package/dist/models/index.js +4 -0
  27. package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +62 -0
  28. package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.js +15 -0
  29. package/models/dashboard-base-search-dto.ts +42 -0
  30. package/models/dashboard-equipment-search-dto.ts +3 -3
  31. package/models/dashboard-surveillance-park-group-stats-vo.ts +66 -0
  32. package/models/dashboard-surveillance-search-dto.ts +57 -0
  33. package/models/index.ts +4 -0
  34. package/models/json-result-list-dashboard-surveillance-park-group-stats-vo.ts +72 -0
  35. package/package.json +1 -1
@@ -0,0 +1,36 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 数据看板基础查询DTO
14
+ * @export
15
+ * @interface DashboardBaseSearchDTO
16
+ */
17
+ export interface DashboardBaseSearchDTO {
18
+ /**
19
+ * 园区ID集合
20
+ * @type {Array<number>}
21
+ * @memberof DashboardBaseSearchDTO
22
+ */
23
+ 'parkIds': Array<number>;
24
+ /**
25
+ * 开始时间
26
+ * @type {number}
27
+ * @memberof DashboardBaseSearchDTO
28
+ */
29
+ 'startTime'?: number;
30
+ /**
31
+ * 结束时间
32
+ * @type {number}
33
+ * @memberof DashboardBaseSearchDTO
34
+ */
35
+ 'endTime'?: number;
36
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -16,19 +16,19 @@
16
16
  */
17
17
  export interface DashboardEquipmentSearchDTO {
18
18
  /**
19
- *
19
+ * 园区ID集合
20
20
  * @type {Array<number>}
21
21
  * @memberof DashboardEquipmentSearchDTO
22
22
  */
23
23
  'parkIds': Array<number>;
24
24
  /**
25
- *
25
+ * 开始时间
26
26
  * @type {number}
27
27
  * @memberof DashboardEquipmentSearchDTO
28
28
  */
29
29
  'startTime'?: number;
30
30
  /**
31
- *
31
+ * 结束时间
32
32
  * @type {number}
33
33
  * @memberof DashboardEquipmentSearchDTO
34
34
  */
@@ -0,0 +1,60 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 数据看板监控园区分组VO
14
+ * @export
15
+ * @interface DashboardSurveillanceParkGroupStatsVO
16
+ */
17
+ export interface DashboardSurveillanceParkGroupStatsVO {
18
+ /**
19
+ * 园区ID
20
+ * @type {number}
21
+ * @memberof DashboardSurveillanceParkGroupStatsVO
22
+ */
23
+ 'parkId'?: number;
24
+ /**
25
+ * 园区名称
26
+ * @type {string}
27
+ * @memberof DashboardSurveillanceParkGroupStatsVO
28
+ */
29
+ 'parkName'?: string;
30
+ /**
31
+ * 监控总数
32
+ * @type {number}
33
+ * @memberof DashboardSurveillanceParkGroupStatsVO
34
+ */
35
+ 'totalCount'?: number;
36
+ /**
37
+ * 离线数
38
+ * @type {number}
39
+ * @memberof DashboardSurveillanceParkGroupStatsVO
40
+ */
41
+ 'offlineCount'?: number;
42
+ /**
43
+ * 累计维修次数
44
+ * @type {number}
45
+ * @memberof DashboardSurveillanceParkGroupStatsVO
46
+ */
47
+ 'repairCount'?: number;
48
+ /**
49
+ * 图像异常数
50
+ * @type {number}
51
+ * @memberof DashboardSurveillanceParkGroupStatsVO
52
+ */
53
+ 'exceptionCount'?: number;
54
+ /**
55
+ * 录像丢失数
56
+ * @type {number}
57
+ * @memberof DashboardSurveillanceParkGroupStatsVO
58
+ */
59
+ 'videoLossCount'?: number;
60
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -0,0 +1,49 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { FunctionalAreaEnum } from './functional-area-enum';
13
+ /**
14
+ * 数据看板监控查询DTO
15
+ * @export
16
+ * @interface DashboardSurveillanceSearchDTO
17
+ */
18
+ export interface DashboardSurveillanceSearchDTO {
19
+ /**
20
+ * 园区ID集合
21
+ * @type {Array<number>}
22
+ * @memberof DashboardSurveillanceSearchDTO
23
+ */
24
+ 'parkIds': Array<number>;
25
+ /**
26
+ * 开始时间
27
+ * @type {number}
28
+ * @memberof DashboardSurveillanceSearchDTO
29
+ */
30
+ 'startTime'?: number;
31
+ /**
32
+ * 结束时间
33
+ * @type {number}
34
+ * @memberof DashboardSurveillanceSearchDTO
35
+ */
36
+ 'endTime'?: number;
37
+ /**
38
+ * 功能区
39
+ * @type {Array<FunctionalAreaEnum>}
40
+ * @memberof DashboardSurveillanceSearchDTO
41
+ */
42
+ 'functionalAreas'?: Array<FunctionalAreaEnum>;
43
+ /**
44
+ * 是否查询为NULL的功能区
45
+ * @type {boolean}
46
+ * @memberof DashboardSurveillanceSearchDTO
47
+ */
48
+ 'includeNullFunctionalArea'?: boolean;
49
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -75,10 +75,13 @@ export * from './captcha-type-enum';
75
75
  export * from './center-list-dto';
76
76
  export * from './change-password-dto';
77
77
  export * from './choose-pak-body';
78
+ export * from './dashboard-base-search-dto';
78
79
  export * from './dashboard-equipment-park-group-stats-vo';
79
80
  export * from './dashboard-equipment-search-dto';
80
81
  export * from './dashboard-equipment-system-group-stats-vo';
81
82
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
83
+ export * from './dashboard-surveillance-park-group-stats-vo';
84
+ export * from './dashboard-surveillance-search-dto';
82
85
  export * from './del-user-vo';
83
86
  export * from './dept-relation';
84
87
  export * from './dept-relation-dto';
@@ -191,6 +194,7 @@ export * from './json-result-list-center-list-dto';
191
194
  export * from './json-result-list-dashboard-equipment-park-group-stats-vo';
192
195
  export * from './json-result-list-dashboard-equipment-system-group-stats-vo';
193
196
  export * from './json-result-list-dashboard-surveillance-functional-area-group-stats-vo';
197
+ export * from './json-result-list-dashboard-surveillance-park-group-stats-vo';
194
198
  export * from './json-result-list-equipment-detail-dto';
195
199
  export * from './json-result-list-equipment-qr-code-dto';
196
200
  export * from './json-result-list-equipment-system-tree-dto';
@@ -75,10 +75,13 @@ export * from './captcha-type-enum';
75
75
  export * from './center-list-dto';
76
76
  export * from './change-password-dto';
77
77
  export * from './choose-pak-body';
78
+ export * from './dashboard-base-search-dto';
78
79
  export * from './dashboard-equipment-park-group-stats-vo';
79
80
  export * from './dashboard-equipment-search-dto';
80
81
  export * from './dashboard-equipment-system-group-stats-vo';
81
82
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
83
+ export * from './dashboard-surveillance-park-group-stats-vo';
84
+ export * from './dashboard-surveillance-search-dto';
82
85
  export * from './del-user-vo';
83
86
  export * from './dept-relation';
84
87
  export * from './dept-relation-dto';
@@ -191,6 +194,7 @@ export * from './json-result-list-center-list-dto';
191
194
  export * from './json-result-list-dashboard-equipment-park-group-stats-vo';
192
195
  export * from './json-result-list-dashboard-equipment-system-group-stats-vo';
193
196
  export * from './json-result-list-dashboard-surveillance-functional-area-group-stats-vo';
197
+ export * from './json-result-list-dashboard-surveillance-park-group-stats-vo';
194
198
  export * from './json-result-list-equipment-detail-dto';
195
199
  export * from './json-result-list-equipment-qr-code-dto';
196
200
  export * from './json-result-list-equipment-system-tree-dto';
@@ -0,0 +1,62 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { BaseErrorResult } from './base-error-result';
13
+ import type { DashboardSurveillanceParkGroupStatsVO } from './dashboard-surveillance-park-group-stats-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultListDashboardSurveillanceParkGroupStatsVO
18
+ */
19
+ export interface JsonResultListDashboardSurveillanceParkGroupStatsVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ * 返回数据,可以是任意类型的值
40
+ * @type {Array<DashboardSurveillanceParkGroupStatsVO>}
41
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
42
+ */
43
+ 'data'?: Array<DashboardSurveillanceParkGroupStatsVO> | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
60
+ */
61
+ 'requestId'?: string | null;
62
+ }
@@ -0,0 +1,14 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ export {};
@@ -0,0 +1,36 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 数据看板基础查询DTO
14
+ * @export
15
+ * @interface DashboardBaseSearchDTO
16
+ */
17
+ export interface DashboardBaseSearchDTO {
18
+ /**
19
+ * 园区ID集合
20
+ * @type {Array<number>}
21
+ * @memberof DashboardBaseSearchDTO
22
+ */
23
+ 'parkIds': Array<number>;
24
+ /**
25
+ * 开始时间
26
+ * @type {number}
27
+ * @memberof DashboardBaseSearchDTO
28
+ */
29
+ 'startTime'?: number;
30
+ /**
31
+ * 结束时间
32
+ * @type {number}
33
+ * @memberof DashboardBaseSearchDTO
34
+ */
35
+ 'endTime'?: number;
36
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -16,19 +16,19 @@
16
16
  */
17
17
  export interface DashboardEquipmentSearchDTO {
18
18
  /**
19
- *
19
+ * 园区ID集合
20
20
  * @type {Array<number>}
21
21
  * @memberof DashboardEquipmentSearchDTO
22
22
  */
23
23
  'parkIds': Array<number>;
24
24
  /**
25
- *
25
+ * 开始时间
26
26
  * @type {number}
27
27
  * @memberof DashboardEquipmentSearchDTO
28
28
  */
29
29
  'startTime'?: number;
30
30
  /**
31
- *
31
+ * 结束时间
32
32
  * @type {number}
33
33
  * @memberof DashboardEquipmentSearchDTO
34
34
  */
@@ -0,0 +1,60 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 数据看板监控园区分组VO
14
+ * @export
15
+ * @interface DashboardSurveillanceParkGroupStatsVO
16
+ */
17
+ export interface DashboardSurveillanceParkGroupStatsVO {
18
+ /**
19
+ * 园区ID
20
+ * @type {number}
21
+ * @memberof DashboardSurveillanceParkGroupStatsVO
22
+ */
23
+ 'parkId'?: number;
24
+ /**
25
+ * 园区名称
26
+ * @type {string}
27
+ * @memberof DashboardSurveillanceParkGroupStatsVO
28
+ */
29
+ 'parkName'?: string;
30
+ /**
31
+ * 监控总数
32
+ * @type {number}
33
+ * @memberof DashboardSurveillanceParkGroupStatsVO
34
+ */
35
+ 'totalCount'?: number;
36
+ /**
37
+ * 离线数
38
+ * @type {number}
39
+ * @memberof DashboardSurveillanceParkGroupStatsVO
40
+ */
41
+ 'offlineCount'?: number;
42
+ /**
43
+ * 累计维修次数
44
+ * @type {number}
45
+ * @memberof DashboardSurveillanceParkGroupStatsVO
46
+ */
47
+ 'repairCount'?: number;
48
+ /**
49
+ * 图像异常数
50
+ * @type {number}
51
+ * @memberof DashboardSurveillanceParkGroupStatsVO
52
+ */
53
+ 'exceptionCount'?: number;
54
+ /**
55
+ * 录像丢失数
56
+ * @type {number}
57
+ * @memberof DashboardSurveillanceParkGroupStatsVO
58
+ */
59
+ 'videoLossCount'?: number;
60
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,49 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { FunctionalAreaEnum } from './functional-area-enum';
13
+ /**
14
+ * 数据看板监控查询DTO
15
+ * @export
16
+ * @interface DashboardSurveillanceSearchDTO
17
+ */
18
+ export interface DashboardSurveillanceSearchDTO {
19
+ /**
20
+ * 园区ID集合
21
+ * @type {Array<number>}
22
+ * @memberof DashboardSurveillanceSearchDTO
23
+ */
24
+ 'parkIds': Array<number>;
25
+ /**
26
+ * 开始时间
27
+ * @type {number}
28
+ * @memberof DashboardSurveillanceSearchDTO
29
+ */
30
+ 'startTime'?: number;
31
+ /**
32
+ * 结束时间
33
+ * @type {number}
34
+ * @memberof DashboardSurveillanceSearchDTO
35
+ */
36
+ 'endTime'?: number;
37
+ /**
38
+ * 功能区
39
+ * @type {Array<FunctionalAreaEnum>}
40
+ * @memberof DashboardSurveillanceSearchDTO
41
+ */
42
+ 'functionalAreas'?: Array<FunctionalAreaEnum>;
43
+ /**
44
+ * 是否查询为NULL的功能区
45
+ * @type {boolean}
46
+ * @memberof DashboardSurveillanceSearchDTO
47
+ */
48
+ 'includeNullFunctionalArea'?: boolean;
49
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * OpenAPI definition
6
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+ *
8
+ * The version of the OpenAPI document: v0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -75,10 +75,13 @@ export * from './captcha-type-enum';
75
75
  export * from './center-list-dto';
76
76
  export * from './change-password-dto';
77
77
  export * from './choose-pak-body';
78
+ export * from './dashboard-base-search-dto';
78
79
  export * from './dashboard-equipment-park-group-stats-vo';
79
80
  export * from './dashboard-equipment-search-dto';
80
81
  export * from './dashboard-equipment-system-group-stats-vo';
81
82
  export * from './dashboard-surveillance-functional-area-group-stats-vo';
83
+ export * from './dashboard-surveillance-park-group-stats-vo';
84
+ export * from './dashboard-surveillance-search-dto';
82
85
  export * from './del-user-vo';
83
86
  export * from './dept-relation';
84
87
  export * from './dept-relation-dto';
@@ -191,6 +194,7 @@ export * from './json-result-list-center-list-dto';
191
194
  export * from './json-result-list-dashboard-equipment-park-group-stats-vo';
192
195
  export * from './json-result-list-dashboard-equipment-system-group-stats-vo';
193
196
  export * from './json-result-list-dashboard-surveillance-functional-area-group-stats-vo';
197
+ export * from './json-result-list-dashboard-surveillance-park-group-stats-vo';
194
198
  export * from './json-result-list-equipment-detail-dto';
195
199
  export * from './json-result-list-equipment-qr-code-dto';
196
200
  export * from './json-result-list-equipment-system-tree-dto';
@@ -91,10 +91,13 @@ __exportStar(require("./captcha-type-enum"), exports);
91
91
  __exportStar(require("./center-list-dto"), exports);
92
92
  __exportStar(require("./change-password-dto"), exports);
93
93
  __exportStar(require("./choose-pak-body"), exports);
94
+ __exportStar(require("./dashboard-base-search-dto"), exports);
94
95
  __exportStar(require("./dashboard-equipment-park-group-stats-vo"), exports);
95
96
  __exportStar(require("./dashboard-equipment-search-dto"), exports);
96
97
  __exportStar(require("./dashboard-equipment-system-group-stats-vo"), exports);
97
98
  __exportStar(require("./dashboard-surveillance-functional-area-group-stats-vo"), exports);
99
+ __exportStar(require("./dashboard-surveillance-park-group-stats-vo"), exports);
100
+ __exportStar(require("./dashboard-surveillance-search-dto"), exports);
98
101
  __exportStar(require("./del-user-vo"), exports);
99
102
  __exportStar(require("./dept-relation"), exports);
100
103
  __exportStar(require("./dept-relation-dto"), exports);
@@ -207,6 +210,7 @@ __exportStar(require("./json-result-list-center-list-dto"), exports);
207
210
  __exportStar(require("./json-result-list-dashboard-equipment-park-group-stats-vo"), exports);
208
211
  __exportStar(require("./json-result-list-dashboard-equipment-system-group-stats-vo"), exports);
209
212
  __exportStar(require("./json-result-list-dashboard-surveillance-functional-area-group-stats-vo"), exports);
213
+ __exportStar(require("./json-result-list-dashboard-surveillance-park-group-stats-vo"), exports);
210
214
  __exportStar(require("./json-result-list-equipment-detail-dto"), exports);
211
215
  __exportStar(require("./json-result-list-equipment-qr-code-dto"), exports);
212
216
  __exportStar(require("./json-result-list-equipment-system-tree-dto"), exports);
@@ -0,0 +1,62 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { BaseErrorResult } from './base-error-result';
13
+ import type { DashboardSurveillanceParkGroupStatsVO } from './dashboard-surveillance-park-group-stats-vo';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface JsonResultListDashboardSurveillanceParkGroupStatsVO
18
+ */
19
+ export interface JsonResultListDashboardSurveillanceParkGroupStatsVO {
20
+ /**
21
+ * 错误码,0:成功,其他:失败
22
+ * @type {number}
23
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
24
+ */
25
+ 'code'?: number;
26
+ /**
27
+ * 错误消息
28
+ * @type {string}
29
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
30
+ */
31
+ 'msg'?: string;
32
+ /**
33
+ * 错误堆栈
34
+ * @type {string}
35
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
36
+ */
37
+ 'stacks'?: string;
38
+ /**
39
+ * 返回数据,可以是任意类型的值
40
+ * @type {Array<DashboardSurveillanceParkGroupStatsVO>}
41
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
42
+ */
43
+ 'data'?: Array<DashboardSurveillanceParkGroupStatsVO> | null;
44
+ /**
45
+ *
46
+ * @type {BaseErrorResult}
47
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
48
+ */
49
+ 'error'?: BaseErrorResult | null;
50
+ /**
51
+ * 日志追踪ID
52
+ * @type {string}
53
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
54
+ */
55
+ 'traceId'?: string | null;
56
+ /**
57
+ * requestId
58
+ * @type {string}
59
+ * @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
60
+ */
61
+ 'requestId'?: string | null;
62
+ }