@gizone/rrs-client 4.2.9-alpha.517 → 4.2.9-alpha.519
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/dist/esm/models/violation-decision-vo.d.ts +18 -0
- package/dist/esm/models/violation-work-order-add-vo.d.ts +6 -0
- package/dist/esm/models/violation-work-order-info.d.ts +18 -0
- package/dist/models/violation-decision-vo.d.ts +18 -0
- package/dist/models/violation-work-order-add-vo.d.ts +6 -0
- package/dist/models/violation-work-order-info.d.ts +18 -0
- package/models/violation-decision-vo.ts +18 -0
- package/models/violation-work-order-add-vo.ts +6 -0
- package/models/violation-work-order-info.ts +18 -0
- package/package.json +1 -1
|
@@ -71,4 +71,22 @@ export interface ViolationDecisionVo {
|
|
|
71
71
|
* @memberof ViolationDecisionVo
|
|
72
72
|
*/
|
|
73
73
|
'claimAmount'?: number;
|
|
74
|
+
/**
|
|
75
|
+
* 举证说明
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof ViolationDecisionVo
|
|
78
|
+
*/
|
|
79
|
+
'evidenceDesc'?: string;
|
|
80
|
+
/**
|
|
81
|
+
* 举证图片
|
|
82
|
+
* @type {Array<string>}
|
|
83
|
+
* @memberof ViolationDecisionVo
|
|
84
|
+
*/
|
|
85
|
+
'evidenceImages'?: Array<string>;
|
|
86
|
+
/**
|
|
87
|
+
* 举证视频
|
|
88
|
+
* @type {Array<string>}
|
|
89
|
+
* @memberof ViolationDecisionVo
|
|
90
|
+
*/
|
|
91
|
+
'evidenceVideos'?: Array<string>;
|
|
74
92
|
}
|
|
@@ -109,4 +109,22 @@ export interface ViolationWorkOrderInfo {
|
|
|
109
109
|
* @memberof ViolationWorkOrderInfo
|
|
110
110
|
*/
|
|
111
111
|
'projectName'?: string;
|
|
112
|
+
/**
|
|
113
|
+
* 举证说明
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof ViolationWorkOrderInfo
|
|
116
|
+
*/
|
|
117
|
+
'evidenceDesc'?: string;
|
|
118
|
+
/**
|
|
119
|
+
* 举证图片
|
|
120
|
+
* @type {Array<string>}
|
|
121
|
+
* @memberof ViolationWorkOrderInfo
|
|
122
|
+
*/
|
|
123
|
+
'evidenceImages'?: Array<string>;
|
|
124
|
+
/**
|
|
125
|
+
* 举证视频
|
|
126
|
+
* @type {Array<string>}
|
|
127
|
+
* @memberof ViolationWorkOrderInfo
|
|
128
|
+
*/
|
|
129
|
+
'evidenceVideos'?: Array<string>;
|
|
112
130
|
}
|
|
@@ -71,4 +71,22 @@ export interface ViolationDecisionVo {
|
|
|
71
71
|
* @memberof ViolationDecisionVo
|
|
72
72
|
*/
|
|
73
73
|
'claimAmount'?: number;
|
|
74
|
+
/**
|
|
75
|
+
* 举证说明
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof ViolationDecisionVo
|
|
78
|
+
*/
|
|
79
|
+
'evidenceDesc'?: string;
|
|
80
|
+
/**
|
|
81
|
+
* 举证图片
|
|
82
|
+
* @type {Array<string>}
|
|
83
|
+
* @memberof ViolationDecisionVo
|
|
84
|
+
*/
|
|
85
|
+
'evidenceImages'?: Array<string>;
|
|
86
|
+
/**
|
|
87
|
+
* 举证视频
|
|
88
|
+
* @type {Array<string>}
|
|
89
|
+
* @memberof ViolationDecisionVo
|
|
90
|
+
*/
|
|
91
|
+
'evidenceVideos'?: Array<string>;
|
|
74
92
|
}
|
|
@@ -109,4 +109,22 @@ export interface ViolationWorkOrderInfo {
|
|
|
109
109
|
* @memberof ViolationWorkOrderInfo
|
|
110
110
|
*/
|
|
111
111
|
'projectName'?: string;
|
|
112
|
+
/**
|
|
113
|
+
* 举证说明
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof ViolationWorkOrderInfo
|
|
116
|
+
*/
|
|
117
|
+
'evidenceDesc'?: string;
|
|
118
|
+
/**
|
|
119
|
+
* 举证图片
|
|
120
|
+
* @type {Array<string>}
|
|
121
|
+
* @memberof ViolationWorkOrderInfo
|
|
122
|
+
*/
|
|
123
|
+
'evidenceImages'?: Array<string>;
|
|
124
|
+
/**
|
|
125
|
+
* 举证视频
|
|
126
|
+
* @type {Array<string>}
|
|
127
|
+
* @memberof ViolationWorkOrderInfo
|
|
128
|
+
*/
|
|
129
|
+
'evidenceVideos'?: Array<string>;
|
|
112
130
|
}
|
|
@@ -80,6 +80,24 @@ export interface ViolationDecisionVo {
|
|
|
80
80
|
* @memberof ViolationDecisionVo
|
|
81
81
|
*/
|
|
82
82
|
'claimAmount'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* 举证说明
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof ViolationDecisionVo
|
|
87
|
+
*/
|
|
88
|
+
'evidenceDesc'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* 举证图片
|
|
91
|
+
* @type {Array<string>}
|
|
92
|
+
* @memberof ViolationDecisionVo
|
|
93
|
+
*/
|
|
94
|
+
'evidenceImages'?: Array<string>;
|
|
95
|
+
/**
|
|
96
|
+
* 举证视频
|
|
97
|
+
* @type {Array<string>}
|
|
98
|
+
* @memberof ViolationDecisionVo
|
|
99
|
+
*/
|
|
100
|
+
'evidenceVideos'?: Array<string>;
|
|
83
101
|
}
|
|
84
102
|
|
|
85
103
|
|
|
@@ -107,6 +107,12 @@ export interface ViolationWorkOrderAddVo {
|
|
|
107
107
|
* @memberof ViolationWorkOrderAddVo
|
|
108
108
|
*/
|
|
109
109
|
'sourceId'?: number;
|
|
110
|
+
/**
|
|
111
|
+
* 索赔金额
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof ViolationWorkOrderAddVo
|
|
114
|
+
*/
|
|
115
|
+
'claimAmount'?: number;
|
|
110
116
|
}
|
|
111
117
|
|
|
112
118
|
|
|
@@ -122,6 +122,24 @@ export interface ViolationWorkOrderInfo {
|
|
|
122
122
|
* @memberof ViolationWorkOrderInfo
|
|
123
123
|
*/
|
|
124
124
|
'projectName'?: string;
|
|
125
|
+
/**
|
|
126
|
+
* 举证说明
|
|
127
|
+
* @type {string}
|
|
128
|
+
* @memberof ViolationWorkOrderInfo
|
|
129
|
+
*/
|
|
130
|
+
'evidenceDesc'?: string;
|
|
131
|
+
/**
|
|
132
|
+
* 举证图片
|
|
133
|
+
* @type {Array<string>}
|
|
134
|
+
* @memberof ViolationWorkOrderInfo
|
|
135
|
+
*/
|
|
136
|
+
'evidenceImages'?: Array<string>;
|
|
137
|
+
/**
|
|
138
|
+
* 举证视频
|
|
139
|
+
* @type {Array<string>}
|
|
140
|
+
* @memberof ViolationWorkOrderInfo
|
|
141
|
+
*/
|
|
142
|
+
'evidenceVideos'?: Array<string>;
|
|
125
143
|
}
|
|
126
144
|
|
|
127
145
|
|