@gizone/rrs-client 4.2.7-alpha.431 → 4.2.7-alpha.433
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/.openapi-generator/FILES +4 -0
- package/apis/dashboard-api.ts +118 -77
- package/dist/apis/dashboard-api.d.ts +61 -44
- package/dist/apis/dashboard-api.js +91 -43
- package/dist/esm/apis/dashboard-api.d.ts +61 -44
- package/dist/esm/apis/dashboard-api.js +91 -43
- package/dist/esm/models/dashboard-base-search-dto.d.ts +36 -0
- package/dist/esm/models/dashboard-base-search-dto.js +14 -0
- package/dist/esm/models/dashboard-equipment-search-dto.d.ts +4 -4
- package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.d.ts +60 -0
- package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.js +14 -0
- package/dist/esm/models/dashboard-surveillance-search-dto.d.ts +49 -0
- package/dist/esm/models/dashboard-surveillance-search-dto.js +14 -0
- package/dist/esm/models/index.d.ts +4 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.js +14 -0
- package/dist/models/dashboard-base-search-dto.d.ts +36 -0
- package/dist/models/dashboard-base-search-dto.js +15 -0
- package/dist/models/dashboard-equipment-search-dto.d.ts +4 -4
- package/dist/models/dashboard-surveillance-park-group-stats-vo.d.ts +60 -0
- package/dist/models/dashboard-surveillance-park-group-stats-vo.js +15 -0
- package/dist/models/dashboard-surveillance-search-dto.d.ts +49 -0
- package/dist/models/dashboard-surveillance-search-dto.js +15 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +62 -0
- package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.js +15 -0
- package/models/dashboard-base-search-dto.ts +42 -0
- package/models/dashboard-equipment-search-dto.ts +4 -4
- package/models/dashboard-surveillance-park-group-stats-vo.ts +66 -0
- package/models/dashboard-surveillance-search-dto.ts +57 -0
- package/models/index.ts +4 -0
- package/models/json-result-list-dashboard-surveillance-park-group-stats-vo.ts +72 -0
- package/package.json +1 -1
|
@@ -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,42 @@
|
|
|
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
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 数据看板基础查询DTO
|
|
19
|
+
* @export
|
|
20
|
+
* @interface DashboardBaseSearchDTO
|
|
21
|
+
*/
|
|
22
|
+
export interface DashboardBaseSearchDTO {
|
|
23
|
+
/**
|
|
24
|
+
* 园区ID集合
|
|
25
|
+
* @type {Array<number>}
|
|
26
|
+
* @memberof DashboardBaseSearchDTO
|
|
27
|
+
*/
|
|
28
|
+
'parkIds'?: Array<number>;
|
|
29
|
+
/**
|
|
30
|
+
* 开始时间
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof DashboardBaseSearchDTO
|
|
33
|
+
*/
|
|
34
|
+
'startTime'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 结束时间
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof DashboardBaseSearchDTO
|
|
39
|
+
*/
|
|
40
|
+
'endTime'?: number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface DashboardEquipmentSearchDTO {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* 园区ID集合
|
|
25
25
|
* @type {Array<number>}
|
|
26
26
|
* @memberof DashboardEquipmentSearchDTO
|
|
27
27
|
*/
|
|
28
|
-
'parkIds'
|
|
28
|
+
'parkIds'?: Array<number>;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* 开始时间
|
|
31
31
|
* @type {number}
|
|
32
32
|
* @memberof DashboardEquipmentSearchDTO
|
|
33
33
|
*/
|
|
34
34
|
'startTime'?: number;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* 结束时间
|
|
37
37
|
* @type {number}
|
|
38
38
|
* @memberof DashboardEquipmentSearchDTO
|
|
39
39
|
*/
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 数据看板监控园区分组VO
|
|
19
|
+
* @export
|
|
20
|
+
* @interface DashboardSurveillanceParkGroupStatsVO
|
|
21
|
+
*/
|
|
22
|
+
export interface DashboardSurveillanceParkGroupStatsVO {
|
|
23
|
+
/**
|
|
24
|
+
* 园区ID
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
27
|
+
*/
|
|
28
|
+
'parkId'?: number;
|
|
29
|
+
/**
|
|
30
|
+
* 园区名称
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
33
|
+
*/
|
|
34
|
+
'parkName'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 监控总数
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
39
|
+
*/
|
|
40
|
+
'totalCount'?: number;
|
|
41
|
+
/**
|
|
42
|
+
* 离线数
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
45
|
+
*/
|
|
46
|
+
'offlineCount'?: number;
|
|
47
|
+
/**
|
|
48
|
+
* 累计维修次数
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
51
|
+
*/
|
|
52
|
+
'repairCount'?: number;
|
|
53
|
+
/**
|
|
54
|
+
* 图像异常数
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
57
|
+
*/
|
|
58
|
+
'exceptionCount'?: number;
|
|
59
|
+
/**
|
|
60
|
+
* 录像丢失数
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof DashboardSurveillanceParkGroupStatsVO
|
|
63
|
+
*/
|
|
64
|
+
'videoLossCount'?: number;
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { FunctionalAreaEnum } from './functional-area-enum';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* 数据看板监控查询DTO
|
|
22
|
+
* @export
|
|
23
|
+
* @interface DashboardSurveillanceSearchDTO
|
|
24
|
+
*/
|
|
25
|
+
export interface DashboardSurveillanceSearchDTO {
|
|
26
|
+
/**
|
|
27
|
+
* 园区ID集合
|
|
28
|
+
* @type {Array<number>}
|
|
29
|
+
* @memberof DashboardSurveillanceSearchDTO
|
|
30
|
+
*/
|
|
31
|
+
'parkIds'?: Array<number>;
|
|
32
|
+
/**
|
|
33
|
+
* 开始时间
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof DashboardSurveillanceSearchDTO
|
|
36
|
+
*/
|
|
37
|
+
'startTime'?: number;
|
|
38
|
+
/**
|
|
39
|
+
* 结束时间
|
|
40
|
+
* @type {number}
|
|
41
|
+
* @memberof DashboardSurveillanceSearchDTO
|
|
42
|
+
*/
|
|
43
|
+
'endTime'?: number;
|
|
44
|
+
/**
|
|
45
|
+
* 功能区
|
|
46
|
+
* @type {Array<FunctionalAreaEnum>}
|
|
47
|
+
* @memberof DashboardSurveillanceSearchDTO
|
|
48
|
+
*/
|
|
49
|
+
'functionalAreas'?: Array<FunctionalAreaEnum>;
|
|
50
|
+
/**
|
|
51
|
+
* 是否查询为NULL的功能区
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof DashboardSurveillanceSearchDTO
|
|
54
|
+
*/
|
|
55
|
+
'includeNullFunctionalArea'?: boolean;
|
|
56
|
+
}
|
|
57
|
+
|
package/models/index.ts
CHANGED
|
@@ -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,72 @@
|
|
|
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
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import type { DashboardSurveillanceParkGroupStatsVO } from './dashboard-surveillance-park-group-stats-vo';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
27
|
+
*/
|
|
28
|
+
export interface JsonResultListDashboardSurveillanceParkGroupStatsVO {
|
|
29
|
+
/**
|
|
30
|
+
* 错误码,0:成功,其他:失败
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
33
|
+
*/
|
|
34
|
+
'code'?: number;
|
|
35
|
+
/**
|
|
36
|
+
* 错误消息
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
39
|
+
*/
|
|
40
|
+
'msg'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* 错误堆栈
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
45
|
+
*/
|
|
46
|
+
'stacks'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* 返回数据,可以是任意类型的值
|
|
49
|
+
* @type {Array<DashboardSurveillanceParkGroupStatsVO>}
|
|
50
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
51
|
+
*/
|
|
52
|
+
'data'?: Array<DashboardSurveillanceParkGroupStatsVO> | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {BaseErrorResult}
|
|
56
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
57
|
+
*/
|
|
58
|
+
'error'?: BaseErrorResult | null;
|
|
59
|
+
/**
|
|
60
|
+
* 日志追踪ID
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
63
|
+
*/
|
|
64
|
+
'traceId'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* requestId
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof JsonResultListDashboardSurveillanceParkGroupStatsVO
|
|
69
|
+
*/
|
|
70
|
+
'requestId'?: string | null;
|
|
71
|
+
}
|
|
72
|
+
|