@gizone/rrs-client 3.11.17-alpha.90 → 3.11.17-alpha.92
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 +1 -0
- package/apis/surveillance-api.ts +52 -26
- package/apis/work-order-api.ts +14 -14
- package/dist/apis/surveillance-api.d.ts +36 -20
- package/dist/apis/surveillance-api.js +28 -18
- package/dist/apis/work-order-api.d.ts +14 -14
- package/dist/apis/work-order-api.js +8 -8
- package/dist/esm/apis/surveillance-api.d.ts +36 -20
- package/dist/esm/apis/surveillance-api.js +28 -18
- package/dist/esm/apis/work-order-api.d.ts +14 -14
- package/dist/esm/apis/work-order-api.js +8 -8
- package/dist/esm/models/get-user-wx200-response.d.ts +13 -13
- package/dist/esm/models/index.d.ts +1 -0
- package/dist/esm/models/index.js +1 -0
- package/dist/esm/models/ipage-access-vo.d.ts +8 -8
- package/dist/esm/models/network-monitor-repair-decision-vo.d.ts +1 -1
- package/dist/esm/models/network-monitor-repair-details-dto.d.ts +7 -27
- package/dist/esm/models/network-repair-info.d.ts +36 -0
- package/dist/esm/models/network-repair-info.js +14 -0
- package/dist/models/get-user-wx200-response.d.ts +13 -13
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/ipage-access-vo.d.ts +8 -8
- package/dist/models/network-monitor-repair-decision-vo.d.ts +1 -1
- package/dist/models/network-monitor-repair-details-dto.d.ts +7 -27
- package/dist/models/network-repair-info.d.ts +36 -0
- package/dist/models/network-repair-info.js +15 -0
- package/models/get-user-wx200-response.ts +13 -13
- package/models/index.ts +1 -0
- package/models/ipage-access-vo.ts +8 -8
- package/models/network-monitor-repair-decision-vo.ts +1 -1
- package/models/network-monitor-repair-details-dto.ts +9 -33
- package/models/network-repair-info.ts +42 -0
- package/package.json +1 -1
|
@@ -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
|
+
* 网络监控报修工单维修信息
|
|
19
|
+
* @export
|
|
20
|
+
* @interface NetworkRepairInfo
|
|
21
|
+
*/
|
|
22
|
+
export interface NetworkRepairInfo {
|
|
23
|
+
/**
|
|
24
|
+
* 是否需要维修
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof NetworkRepairInfo
|
|
27
|
+
*/
|
|
28
|
+
'isNeedRepair'?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* 原因描述
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof NetworkRepairInfo
|
|
33
|
+
*/
|
|
34
|
+
'reasonDescription'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* 维修金额
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof NetworkRepairInfo
|
|
39
|
+
*/
|
|
40
|
+
'repairAmount'?: number;
|
|
41
|
+
}
|
|
42
|
+
|