@gizone/rrs-client 3.11.12-alpha.5 → 3.11.12-alpha.6
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/apis/app-auth-api.ts +13 -13
- package/apis/auth-api.ts +13 -13
- package/apis/work-order-api.ts +8 -10
- package/dist/apis/app-auth-api.d.ts +6 -6
- package/dist/apis/app-auth-api.js +11 -11
- package/dist/apis/auth-api.d.ts +6 -6
- package/dist/apis/auth-api.js +11 -11
- package/dist/apis/work-order-api.d.ts +6 -7
- package/dist/apis/work-order-api.js +4 -4
- package/dist/esm/apis/app-auth-api.d.ts +6 -6
- package/dist/esm/apis/app-auth-api.js +11 -11
- package/dist/esm/apis/auth-api.d.ts +6 -6
- package/dist/esm/apis/auth-api.js +11 -11
- package/dist/esm/apis/work-order-api.d.ts +6 -7
- package/dist/esm/apis/work-order-api.js +4 -4
- package/dist/esm/models/get-user-wx200-response.d.ts +17 -17
- package/dist/esm/models/inspection-item-bo.d.ts +4 -10
- package/dist/esm/models/inspection-point-item.d.ts +6 -6
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/work-order-inspection-detail-dto.d.ts +1 -13
- package/dist/esm/models/work-order-inspection-item-req.d.ts +3 -3
- package/dist/models/get-user-wx200-response.d.ts +17 -17
- package/dist/models/inspection-item-bo.d.ts +4 -10
- package/dist/models/inspection-point-item.d.ts +6 -6
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/work-order-inspection-detail-dto.d.ts +1 -13
- package/dist/models/work-order-inspection-item-req.d.ts +3 -3
- package/models/get-user-wx200-response.ts +17 -17
- package/models/inspection-item-bo.ts +4 -10
- package/models/inspection-point-item.ts +6 -6
- package/models/ipage-access-vo.ts +6 -6
- package/models/work-order-inspection-detail-dto.ts +1 -13
- package/models/work-order-inspection-item-req.ts +3 -3
- package/package.json +1 -1
|
@@ -22,6 +22,12 @@ export interface IPageAccessVO {
|
|
|
22
22
|
* @memberof IPageAccessVO
|
|
23
23
|
*/
|
|
24
24
|
'total'?: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof IPageAccessVO
|
|
29
|
+
*/
|
|
30
|
+
'searchCount'?: boolean;
|
|
25
31
|
/**
|
|
26
32
|
*
|
|
27
33
|
* @type {number}
|
|
@@ -47,12 +53,6 @@ export interface IPageAccessVO {
|
|
|
47
53
|
* @deprecated
|
|
48
54
|
*/
|
|
49
55
|
'hitCount'?: boolean;
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
* @type {boolean}
|
|
53
|
-
* @memberof IPageAccessVO
|
|
54
|
-
*/
|
|
55
|
-
'searchCount'?: boolean;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -47,22 +47,10 @@ export interface WorkOrderInspectionDetailDTO {
|
|
|
47
47
|
'abnormal'?: number;
|
|
48
48
|
/**
|
|
49
49
|
* 照片
|
|
50
|
-
* @type {string}
|
|
51
|
-
* @memberof WorkOrderInspectionDetailDTO
|
|
52
|
-
*/
|
|
53
|
-
'patrolPicture'?: string;
|
|
54
|
-
/**
|
|
55
|
-
* 照片
|
|
56
|
-
* @type {Array<string>}
|
|
57
|
-
* @memberof WorkOrderInspectionDetailDTO
|
|
58
|
-
*/
|
|
59
|
-
'patrolPictureExhibition'?: Array<string>;
|
|
60
|
-
/**
|
|
61
|
-
* 照片s
|
|
62
50
|
* @type {Array<string>}
|
|
63
51
|
* @memberof WorkOrderInspectionDetailDTO
|
|
64
52
|
*/
|
|
65
|
-
'
|
|
53
|
+
'patrolPicture'?: Array<string>;
|
|
66
54
|
/**
|
|
67
55
|
* id
|
|
68
56
|
* @type {number}
|
|
@@ -22,11 +22,11 @@ export interface WorkOrderInspectionItemReq {
|
|
|
22
22
|
*/
|
|
23
23
|
'workOrderInspectionItemId': number;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
* @type {string}
|
|
25
|
+
* 照片
|
|
26
|
+
* @type {Array<string>}
|
|
27
27
|
* @memberof WorkOrderInspectionItemReq
|
|
28
28
|
*/
|
|
29
|
-
'photograph': string
|
|
29
|
+
'photograph': Array<string>;
|
|
30
30
|
/**
|
|
31
31
|
* 有无异常(true:有异常,false:无异常)
|
|
32
32
|
* @type {boolean}
|
|
@@ -28,16 +28,16 @@ import type { GetUserWx200ResponseOutputStream } from './get-user-wx200-response
|
|
|
28
28
|
export interface GetUserWx200Response {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {number}
|
|
32
32
|
* @memberof GetUserWx200Response
|
|
33
33
|
*/
|
|
34
|
-
'
|
|
34
|
+
'status'?: number;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {Array<string>}
|
|
38
38
|
* @memberof GetUserWx200Response
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'headerNames'?: Array<string>;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {object}
|
|
@@ -46,40 +46,40 @@ export interface GetUserWx200Response {
|
|
|
46
46
|
'trailerFields'?: object;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
|
-
* @type {
|
|
49
|
+
* @type {GetUserWx200ResponseLocale}
|
|
50
50
|
* @memberof GetUserWx200Response
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'locale'?: GetUserWx200ResponseLocale;
|
|
53
53
|
/**
|
|
54
54
|
*
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof GetUserWx200Response
|
|
57
57
|
*/
|
|
58
|
-
'
|
|
58
|
+
'bufferSize'?: number;
|
|
59
59
|
/**
|
|
60
60
|
*
|
|
61
|
-
* @type {
|
|
61
|
+
* @type {string}
|
|
62
62
|
* @memberof GetUserWx200Response
|
|
63
63
|
*/
|
|
64
|
-
'
|
|
64
|
+
'contentType'?: string;
|
|
65
65
|
/**
|
|
66
66
|
*
|
|
67
|
-
* @type {
|
|
67
|
+
* @type {number}
|
|
68
68
|
* @memberof GetUserWx200Response
|
|
69
69
|
*/
|
|
70
|
-
'
|
|
70
|
+
'contentLength'?: number;
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
|
-
* @type {
|
|
73
|
+
* @type {GetUserWx200ResponseOutputStream}
|
|
74
74
|
* @memberof GetUserWx200Response
|
|
75
75
|
*/
|
|
76
|
-
'
|
|
76
|
+
'outputStream'?: GetUserWx200ResponseOutputStream;
|
|
77
77
|
/**
|
|
78
78
|
*
|
|
79
|
-
* @type {
|
|
79
|
+
* @type {string}
|
|
80
80
|
* @memberof GetUserWx200Response
|
|
81
81
|
*/
|
|
82
|
-
'
|
|
82
|
+
'characterEncoding'?: string;
|
|
83
83
|
/**
|
|
84
84
|
*
|
|
85
85
|
* @type {number}
|
|
@@ -94,9 +94,9 @@ export interface GetUserWx200Response {
|
|
|
94
94
|
'committed'?: boolean;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
|
-
* @type {
|
|
97
|
+
* @type {object}
|
|
98
98
|
* @memberof GetUserWx200Response
|
|
99
99
|
*/
|
|
100
|
-
'
|
|
100
|
+
'writer'?: object;
|
|
101
101
|
}
|
|
102
102
|
|
|
@@ -28,10 +28,10 @@ export interface InspectionItemBO {
|
|
|
28
28
|
'id'?: number;
|
|
29
29
|
/**
|
|
30
30
|
* 是否异常
|
|
31
|
-
* @type {
|
|
31
|
+
* @type {boolean}
|
|
32
32
|
* @memberof InspectionItemBO
|
|
33
33
|
*/
|
|
34
|
-
'abnormal'?:
|
|
34
|
+
'abnormal'?: boolean;
|
|
35
35
|
/**
|
|
36
36
|
* 异常原因
|
|
37
37
|
* @type {string}
|
|
@@ -44,18 +44,12 @@ export interface InspectionItemBO {
|
|
|
44
44
|
* @memberof InspectionItemBO
|
|
45
45
|
*/
|
|
46
46
|
'patrolPicture'?: Array<string>;
|
|
47
|
-
/**
|
|
48
|
-
* 照片String
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof InspectionItemBO
|
|
51
|
-
*/
|
|
52
|
-
'patrolPictureString'?: string;
|
|
53
47
|
/**
|
|
54
48
|
* 抄表值
|
|
55
|
-
* @type {
|
|
49
|
+
* @type {number}
|
|
56
50
|
* @memberof InspectionItemBO
|
|
57
51
|
*/
|
|
58
|
-
'whetherValue'?:
|
|
52
|
+
'whetherValue'?: number;
|
|
59
53
|
/**
|
|
60
54
|
* 备注
|
|
61
55
|
* @type {string}
|
|
@@ -55,16 +55,16 @@ export interface InspectionPointItem {
|
|
|
55
55
|
'abnormal'?: number;
|
|
56
56
|
/**
|
|
57
57
|
* 照片(用,分隔)
|
|
58
|
-
* @type {string}
|
|
58
|
+
* @type {Array<string>}
|
|
59
59
|
* @memberof InspectionPointItem
|
|
60
60
|
*/
|
|
61
|
-
'photograph'?: string
|
|
61
|
+
'photograph'?: Array<string>;
|
|
62
62
|
/**
|
|
63
63
|
* 照片
|
|
64
|
-
* @type {string}
|
|
64
|
+
* @type {Array<string>}
|
|
65
65
|
* @memberof InspectionPointItem
|
|
66
66
|
*/
|
|
67
|
-
'patrolPicture'?: string
|
|
67
|
+
'patrolPicture'?: Array<string>;
|
|
68
68
|
/**
|
|
69
69
|
* 异常描述
|
|
70
70
|
* @type {string}
|
|
@@ -97,10 +97,10 @@ export interface InspectionPointItem {
|
|
|
97
97
|
'isReadingRequired'?: boolean;
|
|
98
98
|
/**
|
|
99
99
|
* 抄表值
|
|
100
|
-
* @type {
|
|
100
|
+
* @type {number}
|
|
101
101
|
* @memberof InspectionPointItem
|
|
102
102
|
*/
|
|
103
|
-
'whetherValue'?:
|
|
103
|
+
'whetherValue'?: number;
|
|
104
104
|
/**
|
|
105
105
|
* 是否备注 1是 0否
|
|
106
106
|
* @type {boolean}
|
|
@@ -29,6 +29,12 @@ export interface IPageAccessVO {
|
|
|
29
29
|
* @memberof IPageAccessVO
|
|
30
30
|
*/
|
|
31
31
|
'total'?: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {boolean}
|
|
35
|
+
* @memberof IPageAccessVO
|
|
36
|
+
*/
|
|
37
|
+
'searchCount'?: boolean;
|
|
32
38
|
/**
|
|
33
39
|
*
|
|
34
40
|
* @type {number}
|
|
@@ -54,12 +60,6 @@ export interface IPageAccessVO {
|
|
|
54
60
|
* @deprecated
|
|
55
61
|
*/
|
|
56
62
|
'hitCount'?: boolean;
|
|
57
|
-
/**
|
|
58
|
-
*
|
|
59
|
-
* @type {boolean}
|
|
60
|
-
* @memberof IPageAccessVO
|
|
61
|
-
*/
|
|
62
|
-
'searchCount'?: boolean;
|
|
63
63
|
/**
|
|
64
64
|
*
|
|
65
65
|
* @type {number}
|
|
@@ -52,22 +52,10 @@ export interface WorkOrderInspectionDetailDTO {
|
|
|
52
52
|
'abnormal'?: number;
|
|
53
53
|
/**
|
|
54
54
|
* 照片
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof WorkOrderInspectionDetailDTO
|
|
57
|
-
*/
|
|
58
|
-
'patrolPicture'?: string;
|
|
59
|
-
/**
|
|
60
|
-
* 照片
|
|
61
|
-
* @type {Array<string>}
|
|
62
|
-
* @memberof WorkOrderInspectionDetailDTO
|
|
63
|
-
*/
|
|
64
|
-
'patrolPictureExhibition'?: Array<string>;
|
|
65
|
-
/**
|
|
66
|
-
* 照片s
|
|
67
55
|
* @type {Array<string>}
|
|
68
56
|
* @memberof WorkOrderInspectionDetailDTO
|
|
69
57
|
*/
|
|
70
|
-
'
|
|
58
|
+
'patrolPicture'?: Array<string>;
|
|
71
59
|
/**
|
|
72
60
|
* id
|
|
73
61
|
* @type {number}
|
|
@@ -27,11 +27,11 @@ export interface WorkOrderInspectionItemReq {
|
|
|
27
27
|
*/
|
|
28
28
|
'workOrderInspectionItemId': number;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
30
|
+
* 照片
|
|
31
|
+
* @type {Array<string>}
|
|
32
32
|
* @memberof WorkOrderInspectionItemReq
|
|
33
33
|
*/
|
|
34
|
-
'photograph': string
|
|
34
|
+
'photograph': Array<string>;
|
|
35
35
|
/**
|
|
36
36
|
* 有无异常(true:有异常,false:无异常)
|
|
37
37
|
* @type {boolean}
|