szpt-driver-api 1.0.21 → 1.0.23
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/accident.d.ts +59 -4
- package/accident.js +1 -1
- package/accident.js.map +1 -1
- package/auth.d.ts +476 -214
- package/auth.js +1 -1
- package/auth.js.map +1 -1
- package/authBpmn.d.ts +56 -2
- package/authBpmn.js +1 -1
- package/authBpmn.js.map +1 -1
- package/authBpmnQuery.d.ts +12 -4
- package/authBpmnQuery.js +1 -1
- package/authBpmnQuery.js.map +1 -1
- package/authDuty.d.ts +525 -66
- package/authDuty.js +1 -1
- package/authDuty.js.map +1 -1
- package/authV2.d.ts +14 -0
- package/authV2.js.map +1 -1
- package/common.d.ts +60 -10
- package/common.js +1 -1
- package/common.js.map +1 -1
- package/external.d.ts +125 -4
- package/external.js +1 -1
- package/external.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/oss.d.ts +208 -22
- package/oss.js +1 -1
- package/oss.js.map +1 -1
- package/package.json +1 -1
- package/query.d.ts +371 -129
- package/query.js +1 -1
- package/query.js.map +1 -1
- package/szAccident.d.ts +1029 -132
- package/szAccident.js +1 -1
- package/szAccident.js.map +1 -1
- package/szAccidentPublic.d.ts +1059 -0
- package/szAccidentPublic.js +2 -0
- package/szAccidentPublic.js.map +1 -0
- package/szStatistic.d.ts +9 -7
- package/szStatistic.js.map +1 -1
- package/szTraffic.d.ts +2155 -146
- package/szTraffic.js +1 -1
- package/szTraffic.js.map +1 -1
- package/violation.d.ts +522 -20
- package/violation.js +1 -1
- package/violation.js.map +1 -1
package/szAccident.d.ts
CHANGED
|
@@ -1,40 +1,272 @@
|
|
|
1
|
-
export declare class
|
|
2
|
-
/**
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
|
|
1
|
+
export declare class AccidentDTO {
|
|
2
|
+
/** 作废原因 */
|
|
3
|
+
abortReason: string;
|
|
4
|
+
/** 作废原因类型 */
|
|
5
|
+
abortReasonKey: string;
|
|
6
|
+
/**
|
|
7
|
+
* 是否作废
|
|
8
|
+
* @example false
|
|
9
|
+
*/
|
|
10
|
+
aborted: boolean;
|
|
11
|
+
/** 报告 */
|
|
12
|
+
accidentReport: AccidentReportDTO;
|
|
13
|
+
/** 事故地址 */
|
|
14
|
+
address: string;
|
|
15
|
+
/** 到达现场部门 */
|
|
16
|
+
arriveDepartment: string;
|
|
6
17
|
/**
|
|
7
|
-
*
|
|
18
|
+
* 到达现场时间
|
|
8
19
|
* @format int64
|
|
9
20
|
*/
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
|
|
13
|
-
/** @format int64 */
|
|
14
|
-
id?: number;
|
|
15
|
-
/** 审核未通过原因 */
|
|
16
|
-
rejectReason?: string;
|
|
17
|
-
/** 事故编号 */
|
|
18
|
-
sgbh?: string;
|
|
19
|
-
}
|
|
20
|
-
export declare class AccidentAuditDTORes {
|
|
21
|
-
/** 审核人-所属部门 */
|
|
22
|
-
auditDepartment: string;
|
|
23
|
-
/** 审核结果 */
|
|
24
|
-
auditState: "FAIL" | "NO_REQUIRED" | "SUCCESS" | "WAIT";
|
|
21
|
+
arriveTime: number;
|
|
22
|
+
/** 到达现场用户 */
|
|
23
|
+
arriveUser: string;
|
|
25
24
|
/**
|
|
26
|
-
*
|
|
25
|
+
* 报警时间
|
|
26
|
+
* @format int64
|
|
27
|
+
*/
|
|
28
|
+
bjsj: number;
|
|
29
|
+
/**
|
|
30
|
+
* 事故撤销时间
|
|
31
|
+
* @format int64
|
|
32
|
+
*/
|
|
33
|
+
cancelTime: number;
|
|
34
|
+
/** 事故发生地(市) */
|
|
35
|
+
city: string;
|
|
36
|
+
/** 保险理赔人员 */
|
|
37
|
+
claimPersonList: InsuranceClaimPersonDTO[];
|
|
38
|
+
/** 保险理赔信息 */
|
|
39
|
+
claimSettlementList: InsuranceClaimSettlementDTO[];
|
|
40
|
+
/** 车辆间事故 */
|
|
41
|
+
cljsg: string;
|
|
42
|
+
/** 赔偿结果 */
|
|
43
|
+
compensateResult: string;
|
|
44
|
+
/**
|
|
45
|
+
* 事故完成时间
|
|
46
|
+
* @format int64
|
|
47
|
+
*/
|
|
48
|
+
completedTime: number;
|
|
49
|
+
/**
|
|
50
|
+
* 事故耗时(单位秒)
|
|
51
|
+
* @format int64
|
|
52
|
+
*/
|
|
53
|
+
consumeTime: number;
|
|
54
|
+
/**
|
|
55
|
+
* 创建时间
|
|
56
|
+
* @format int64
|
|
57
|
+
*/
|
|
58
|
+
createTime: number;
|
|
59
|
+
/** 创建人用户名 */
|
|
60
|
+
createUser: string;
|
|
61
|
+
/** 档案编号 */
|
|
62
|
+
dah: string;
|
|
63
|
+
/** 单车事故 */
|
|
64
|
+
dcsg: string;
|
|
65
|
+
/** 地点米数 */
|
|
66
|
+
ddms: string;
|
|
67
|
+
/**
|
|
68
|
+
* 是否已删除
|
|
69
|
+
* @example false
|
|
70
|
+
*/
|
|
71
|
+
deleted: boolean;
|
|
72
|
+
/** 部门代码 */
|
|
73
|
+
department: string;
|
|
74
|
+
/** 部门全称 */
|
|
75
|
+
departmentFullname: string;
|
|
76
|
+
/** 部门简称 */
|
|
77
|
+
departmentShortname: string;
|
|
78
|
+
/** 数据签名 */
|
|
79
|
+
digest: EntityDigest;
|
|
80
|
+
/** 派警部门 */
|
|
81
|
+
dispatchDepartment: string;
|
|
82
|
+
/**
|
|
83
|
+
* 派警时间
|
|
84
|
+
* @format int64
|
|
85
|
+
*/
|
|
86
|
+
dispatchTime: number;
|
|
87
|
+
/** 派警用户 */
|
|
88
|
+
dispatchUser: string;
|
|
89
|
+
/** 事故发生地(区) */
|
|
90
|
+
district: string;
|
|
91
|
+
/** 道路代码 */
|
|
92
|
+
dldm: string;
|
|
93
|
+
/**
|
|
94
|
+
* 修改时间
|
|
95
|
+
* @format int64
|
|
96
|
+
*/
|
|
97
|
+
editTime: number;
|
|
98
|
+
/** 修改人用户名 */
|
|
99
|
+
editUser: string;
|
|
100
|
+
/** 证据列表 */
|
|
101
|
+
evidenceList: Evidence[];
|
|
102
|
+
/**
|
|
103
|
+
* 是否仅取证
|
|
104
|
+
* @example false
|
|
105
|
+
*/
|
|
106
|
+
evidencedOnly: boolean;
|
|
107
|
+
/** 事故认定部门 */
|
|
108
|
+
handleDepartment: string;
|
|
109
|
+
/**
|
|
110
|
+
* 事故认定时间
|
|
111
|
+
* @format int64
|
|
112
|
+
*/
|
|
113
|
+
handleTime: number;
|
|
114
|
+
/** 事故认定用户 */
|
|
115
|
+
handleUser: string;
|
|
116
|
+
/**
|
|
117
|
+
* 主键
|
|
27
118
|
* @format int64
|
|
28
119
|
*/
|
|
29
|
-
auditTime: number;
|
|
30
|
-
/** 审核人-用户名 */
|
|
31
|
-
auditUser: string;
|
|
32
|
-
/** @format int64 */
|
|
33
120
|
id: number;
|
|
34
|
-
/**
|
|
35
|
-
|
|
121
|
+
/** 保险评分情况 */
|
|
122
|
+
insuranceScoreList: ScoreDTO[];
|
|
123
|
+
/** 结案方式 */
|
|
124
|
+
jafs: string;
|
|
125
|
+
/** 结案人1 */
|
|
126
|
+
"jar1": string;
|
|
127
|
+
/** 结案人2 */
|
|
128
|
+
"jar2": string;
|
|
129
|
+
/** 结案人1用户名 */
|
|
130
|
+
"jarUsername1": string;
|
|
131
|
+
/** 结案人2用户名 */
|
|
132
|
+
"jarUsername2": string;
|
|
133
|
+
/** 经办人 */
|
|
134
|
+
jbr: string;
|
|
135
|
+
/** 经办人用户名 */
|
|
136
|
+
jbrUsername: string;
|
|
137
|
+
/** 接警单编号 */
|
|
138
|
+
jjdbh: string;
|
|
139
|
+
/** 警情小类 */
|
|
140
|
+
jqxl: string;
|
|
141
|
+
/** 打标列表 */
|
|
142
|
+
labelList: AccidentLabelDTO[];
|
|
143
|
+
/** 经纬度 */
|
|
144
|
+
latlng: Point;
|
|
145
|
+
/** 路段代码 */
|
|
146
|
+
lddm: string;
|
|
147
|
+
/** 道路名称 */
|
|
148
|
+
ldmc: string;
|
|
149
|
+
/** 事故来源 */
|
|
150
|
+
origin: string;
|
|
151
|
+
/** 关联警情 */
|
|
152
|
+
policeEventList: PoliceEvent[];
|
|
153
|
+
/** 业务编号(系统自动生成) */
|
|
154
|
+
processBusinessKey: string;
|
|
155
|
+
/** 流程编号(系统自动生成) */
|
|
156
|
+
processId: string;
|
|
157
|
+
/** 事故发生地(省) */
|
|
158
|
+
province: string;
|
|
159
|
+
/** 推送 保险报案 信息 */
|
|
160
|
+
pushInsuranceStatusList: AccidentPushInsuranceStatusDTO[];
|
|
161
|
+
/** 推送六合一相关 */
|
|
162
|
+
pushTrffStatus: AccidentPushTrffStatusDTO;
|
|
163
|
+
/** 接收派警部门 */
|
|
164
|
+
receiveDepartment: string;
|
|
165
|
+
/**
|
|
166
|
+
* 接收派警时间
|
|
167
|
+
* @format int64
|
|
168
|
+
*/
|
|
169
|
+
receiveTime: number;
|
|
170
|
+
/** 接收派警用户 */
|
|
171
|
+
receiveUser: string;
|
|
172
|
+
/** 备注 */
|
|
173
|
+
remark: string;
|
|
174
|
+
/** 报警人电话 */
|
|
175
|
+
reportPhone: string;
|
|
176
|
+
/** 模版类型 */
|
|
177
|
+
reportTemplateType: "ADJUST" | "IDENTIFICATION" | "NEGOTIATION" | "PROVE";
|
|
178
|
+
/**
|
|
179
|
+
* 上报时间
|
|
180
|
+
* @format int64
|
|
181
|
+
*/
|
|
182
|
+
reportTime: number;
|
|
183
|
+
/** 报警人姓名 */
|
|
184
|
+
reportUser: string;
|
|
185
|
+
/** 报警人身份证号 */
|
|
186
|
+
reportZjhm: string;
|
|
187
|
+
/** 业务场景 */
|
|
188
|
+
scene: "ByFj" | "ByMj" | "BySgzdMj";
|
|
189
|
+
/** 评分情况 */
|
|
190
|
+
scoreList: ScoreDTO[];
|
|
36
191
|
/** 事故编号 */
|
|
37
192
|
sgbh: string;
|
|
193
|
+
/** 六合一事故编号 */
|
|
194
|
+
sgbhTrff: string;
|
|
195
|
+
/** 事故地点 */
|
|
196
|
+
sgdd: string;
|
|
197
|
+
/** 事故地点行驶方向 */
|
|
198
|
+
sgddDirection: string;
|
|
199
|
+
/** 事故地点类型 */
|
|
200
|
+
sgddType: string;
|
|
201
|
+
/** 事故结案备注 */
|
|
202
|
+
sgjabz: string;
|
|
203
|
+
/** 事故结案渠道 */
|
|
204
|
+
sgjaqd: string;
|
|
205
|
+
/** 事故描述 */
|
|
206
|
+
sgms: string;
|
|
207
|
+
/** 事故情形 */
|
|
208
|
+
sgqx: string;
|
|
209
|
+
/** 事故情形其他 */
|
|
210
|
+
sgqxOther: string;
|
|
211
|
+
/** 事故认定原因 */
|
|
212
|
+
sgrdyy: string;
|
|
213
|
+
/** 事故形态 */
|
|
214
|
+
sgxt: string;
|
|
215
|
+
/** 事故形态其他 */
|
|
216
|
+
sgxtOther: string;
|
|
217
|
+
/**
|
|
218
|
+
* 受伤人数
|
|
219
|
+
* @format int32
|
|
220
|
+
*/
|
|
221
|
+
ssrs: number;
|
|
222
|
+
/** 事故状态 */
|
|
223
|
+
state: "CANCELED" | "COMPLETED" | "RUNNING";
|
|
224
|
+
/** 事故发生地(路名+门牌号) */
|
|
225
|
+
street: string;
|
|
226
|
+
/**
|
|
227
|
+
* 测试数据标记
|
|
228
|
+
* @example false
|
|
229
|
+
*/
|
|
230
|
+
testData: boolean;
|
|
231
|
+
/**
|
|
232
|
+
* 事故时间
|
|
233
|
+
* @format int64
|
|
234
|
+
*/
|
|
235
|
+
time: number;
|
|
236
|
+
/** 调解方式 */
|
|
237
|
+
tjfs: string;
|
|
238
|
+
/** 调解人 */
|
|
239
|
+
tjr: string;
|
|
240
|
+
/** 调解人用户名 */
|
|
241
|
+
tjrUsername: string;
|
|
242
|
+
/** 辖区 */
|
|
243
|
+
townCode: string;
|
|
244
|
+
/** 事故发生地(街道) */
|
|
245
|
+
township: string;
|
|
246
|
+
/** 事故类型 */
|
|
247
|
+
type: string;
|
|
248
|
+
/** 当事人列表 */
|
|
249
|
+
userList: AccidentUserDTO[];
|
|
250
|
+
/**
|
|
251
|
+
* 是否进行过远程视频
|
|
252
|
+
* @example false
|
|
253
|
+
*/
|
|
254
|
+
videoRecord: boolean;
|
|
255
|
+
/** 天气 */
|
|
256
|
+
weather: string;
|
|
257
|
+
/** 文书编号 */
|
|
258
|
+
wsbh: string;
|
|
259
|
+
/** 现场 */
|
|
260
|
+
xc: string;
|
|
261
|
+
/** 行政区划 */
|
|
262
|
+
xzqh: string;
|
|
263
|
+
/**
|
|
264
|
+
* 直接财产损失
|
|
265
|
+
* @format double
|
|
266
|
+
*/
|
|
267
|
+
zjccss: number;
|
|
268
|
+
/** 责任调解结果 */
|
|
269
|
+
zrtjjg: string;
|
|
38
270
|
}
|
|
39
271
|
export declare class AccidentDTOReq {
|
|
40
272
|
/** 作废原因 */
|
|
@@ -59,8 +291,11 @@ export declare class AccidentDTOReq {
|
|
|
59
291
|
arriveTime?: number;
|
|
60
292
|
/** 到达现场用户 */
|
|
61
293
|
arriveUser?: string;
|
|
62
|
-
/**
|
|
63
|
-
|
|
294
|
+
/**
|
|
295
|
+
* 报警时间
|
|
296
|
+
* @format int64
|
|
297
|
+
*/
|
|
298
|
+
bjsj?: number;
|
|
64
299
|
/**
|
|
65
300
|
* 事故撤销时间
|
|
66
301
|
* @format int64
|
|
@@ -326,8 +561,11 @@ export declare class AccidentDTORes {
|
|
|
326
561
|
arriveTime: number;
|
|
327
562
|
/** 到达现场用户 */
|
|
328
563
|
arriveUser: string;
|
|
329
|
-
/**
|
|
330
|
-
|
|
564
|
+
/**
|
|
565
|
+
* 报警时间
|
|
566
|
+
* @format int64
|
|
567
|
+
*/
|
|
568
|
+
bjsj: number;
|
|
331
569
|
/**
|
|
332
570
|
* 事故撤销时间
|
|
333
571
|
* @format int64
|
|
@@ -570,6 +808,22 @@ export declare class AccidentDTORes {
|
|
|
570
808
|
/** 责任调解结果 */
|
|
571
809
|
zrtjjg: string;
|
|
572
810
|
}
|
|
811
|
+
export declare class AccidentForHeatMap {
|
|
812
|
+
address: string;
|
|
813
|
+
ddms: string;
|
|
814
|
+
dldm: string;
|
|
815
|
+
latlng: LatlngPoint;
|
|
816
|
+
lddm: string;
|
|
817
|
+
ldmc: string;
|
|
818
|
+
sgbh: string;
|
|
819
|
+
}
|
|
820
|
+
export declare class AccidentJjdbhBindResult {
|
|
821
|
+
binded: boolean;
|
|
822
|
+
/** @format int64 */
|
|
823
|
+
bjsj: number;
|
|
824
|
+
jjdbh: string;
|
|
825
|
+
reason: string;
|
|
826
|
+
}
|
|
573
827
|
export declare class AccidentLabelDTO {
|
|
574
828
|
/** @format int64 */
|
|
575
829
|
id: number;
|
|
@@ -582,6 +836,29 @@ export declare class AccidentLabelDTO {
|
|
|
582
836
|
/** 事故编号 */
|
|
583
837
|
sgbh: string;
|
|
584
838
|
}
|
|
839
|
+
export declare class AccidentPushInsuranceStatusDTO {
|
|
840
|
+
/** 保险公司编码 */
|
|
841
|
+
bxgsCode: string;
|
|
842
|
+
/** 保险报案号 */
|
|
843
|
+
bxlpNo: string;
|
|
844
|
+
/** @format int64 */
|
|
845
|
+
id: number;
|
|
846
|
+
/** 提交返回状态码 */
|
|
847
|
+
pushCode: string;
|
|
848
|
+
/** 错误信息 */
|
|
849
|
+
pushMessage: string;
|
|
850
|
+
/** 提交状态 */
|
|
851
|
+
pushState: "Cancel" | "Done" | "Error" | "Init" | "Suspend" | "Wait";
|
|
852
|
+
/**
|
|
853
|
+
* 推送时间
|
|
854
|
+
* @format int64
|
|
855
|
+
*/
|
|
856
|
+
pushTime: number;
|
|
857
|
+
/** 事故编号 */
|
|
858
|
+
sgbh: string;
|
|
859
|
+
/** 保险报案人证件号码 */
|
|
860
|
+
zjhm: string;
|
|
861
|
+
}
|
|
585
862
|
export declare class AccidentPushInsuranceStatusDTOReq {
|
|
586
863
|
/** 保险公司编码 */
|
|
587
864
|
bxgsCode?: string;
|
|
@@ -595,6 +872,11 @@ export declare class AccidentPushInsuranceStatusDTOReq {
|
|
|
595
872
|
pushMessage?: string;
|
|
596
873
|
/** 提交状态 */
|
|
597
874
|
pushState?: "Cancel" | "Done" | "Error" | "Init" | "Suspend" | "Wait";
|
|
875
|
+
/**
|
|
876
|
+
* 推送时间
|
|
877
|
+
* @format int64
|
|
878
|
+
*/
|
|
879
|
+
pushTime?: number;
|
|
598
880
|
/** 事故编号 */
|
|
599
881
|
sgbh?: string;
|
|
600
882
|
/** 保险报案人证件号码 */
|
|
@@ -613,6 +895,11 @@ export declare class AccidentPushInsuranceStatusDTORes {
|
|
|
613
895
|
pushMessage: string;
|
|
614
896
|
/** 提交状态 */
|
|
615
897
|
pushState: "Cancel" | "Done" | "Error" | "Init" | "Suspend" | "Wait";
|
|
898
|
+
/**
|
|
899
|
+
* 推送时间
|
|
900
|
+
* @format int64
|
|
901
|
+
*/
|
|
902
|
+
pushTime: number;
|
|
616
903
|
/** 事故编号 */
|
|
617
904
|
sgbh: string;
|
|
618
905
|
/** 保险报案人证件号码 */
|
|
@@ -635,6 +922,20 @@ export declare class AccidentPushResponse {
|
|
|
635
922
|
success: boolean;
|
|
636
923
|
trffSgbh: string;
|
|
637
924
|
}
|
|
925
|
+
export declare class AccidentPushTrffStatusDTO {
|
|
926
|
+
/** @format int64 */
|
|
927
|
+
id: number;
|
|
928
|
+
/** 提交返回状态码 */
|
|
929
|
+
pushCode: string;
|
|
930
|
+
/** 错误信息 */
|
|
931
|
+
pushMessage: string;
|
|
932
|
+
/** 提交状态 */
|
|
933
|
+
pushState: "Cancel" | "Done" | "Error" | "Init" | "Suspend" | "Wait";
|
|
934
|
+
/** 事故编号 */
|
|
935
|
+
sgbh: string;
|
|
936
|
+
/** 六合一事故编号 */
|
|
937
|
+
trffSgbh: string;
|
|
938
|
+
}
|
|
638
939
|
export declare class AccidentPushTrffStatusDTOReq {
|
|
639
940
|
/** @format int64 */
|
|
640
941
|
id?: number;
|
|
@@ -683,10 +984,6 @@ export declare class AccidentReportDTO {
|
|
|
683
984
|
/** 模版 */
|
|
684
985
|
template: string;
|
|
685
986
|
}
|
|
686
|
-
export declare class AccidentSimpleForHeatMap {
|
|
687
|
-
latlng: LatlngPoint;
|
|
688
|
-
sgbh: string;
|
|
689
|
-
}
|
|
690
987
|
export declare class AccidentSimpleInfo {
|
|
691
988
|
address: string;
|
|
692
989
|
city: string;
|
|
@@ -773,8 +1070,174 @@ export declare class AccidentSimpleInfo {
|
|
|
773
1070
|
wsbh: string;
|
|
774
1071
|
xc: string;
|
|
775
1072
|
xzqh: string;
|
|
776
|
-
/** @format double */
|
|
777
|
-
zjccss: number;
|
|
1073
|
+
/** @format double */
|
|
1074
|
+
zjccss: number;
|
|
1075
|
+
}
|
|
1076
|
+
export declare class AccidentUserDTO {
|
|
1077
|
+
/**
|
|
1078
|
+
* 年龄
|
|
1079
|
+
* @format int32
|
|
1080
|
+
*/
|
|
1081
|
+
age: number;
|
|
1082
|
+
/** 保险公司 */
|
|
1083
|
+
bxgs: string;
|
|
1084
|
+
/**
|
|
1085
|
+
* 初次领证日期
|
|
1086
|
+
* @format int64
|
|
1087
|
+
*/
|
|
1088
|
+
cclzrq: number;
|
|
1089
|
+
/** 车架号 */
|
|
1090
|
+
cjh: string;
|
|
1091
|
+
/** 车架号2 */
|
|
1092
|
+
"cjh2": string;
|
|
1093
|
+
/** 车辆方位 */
|
|
1094
|
+
clfw: string;
|
|
1095
|
+
/** 车辆发证机关 */
|
|
1096
|
+
clfzjg: string;
|
|
1097
|
+
/** 车辆管辖地 */
|
|
1098
|
+
clgxd: string;
|
|
1099
|
+
/** 车辆类型 */
|
|
1100
|
+
cllx: string;
|
|
1101
|
+
/** 车辆类型2 */
|
|
1102
|
+
"cllx2": string;
|
|
1103
|
+
/** 车辆品牌 */
|
|
1104
|
+
clpp: string;
|
|
1105
|
+
/** 车辆型号 */
|
|
1106
|
+
clxh: string;
|
|
1107
|
+
/** 车辆颜色 */
|
|
1108
|
+
clys: string;
|
|
1109
|
+
/** 车辆装载物品 */
|
|
1110
|
+
clzzwp: string;
|
|
1111
|
+
/** 档案编号 */
|
|
1112
|
+
dabh: string;
|
|
1113
|
+
/** 当事人相关证据列表 */
|
|
1114
|
+
evidenceList: Evidence[];
|
|
1115
|
+
/** 发动机号 */
|
|
1116
|
+
fdjh: string;
|
|
1117
|
+
/** 发证机关 */
|
|
1118
|
+
fzjg: string;
|
|
1119
|
+
/** 管理行政区划 */
|
|
1120
|
+
glxzqh: string;
|
|
1121
|
+
/** 号牌号码 */
|
|
1122
|
+
hphm: string;
|
|
1123
|
+
/** 号牌号码2 */
|
|
1124
|
+
"hphm2": string;
|
|
1125
|
+
/** 号牌种类 */
|
|
1126
|
+
hpzl: string;
|
|
1127
|
+
/** 号牌种类2 */
|
|
1128
|
+
"hpzl2": string;
|
|
1129
|
+
/** @format int64 */
|
|
1130
|
+
id: number;
|
|
1131
|
+
/** 机动车所有人 */
|
|
1132
|
+
jdcsyr: string;
|
|
1133
|
+
/** 机动车序号 */
|
|
1134
|
+
jdcxh: string;
|
|
1135
|
+
/** 机动车状态 */
|
|
1136
|
+
jdczt: string;
|
|
1137
|
+
/** 关联决定书编号 */
|
|
1138
|
+
jdsbh: string;
|
|
1139
|
+
/**
|
|
1140
|
+
* 驾龄
|
|
1141
|
+
* @format int32
|
|
1142
|
+
*/
|
|
1143
|
+
jl: number;
|
|
1144
|
+
/** 交强险号 */
|
|
1145
|
+
jqxh: string;
|
|
1146
|
+
/**
|
|
1147
|
+
* 交强险保单有效截至日期
|
|
1148
|
+
* @format int64
|
|
1149
|
+
*/
|
|
1150
|
+
jqxjzrq: number;
|
|
1151
|
+
/** 驾驶人管辖地 */
|
|
1152
|
+
jsrgxd: string;
|
|
1153
|
+
/** 驾驶证种类 */
|
|
1154
|
+
jszzl: string;
|
|
1155
|
+
/** 交通方式 */
|
|
1156
|
+
jtfs: string;
|
|
1157
|
+
/** 交通方式2 */
|
|
1158
|
+
"jtfs2": string;
|
|
1159
|
+
/** 居住地 */
|
|
1160
|
+
jzd: string;
|
|
1161
|
+
/** 重点车辆类型 */
|
|
1162
|
+
keyVehicleType: string;
|
|
1163
|
+
/** 法律条文 */
|
|
1164
|
+
laws: string[];
|
|
1165
|
+
/** 姓名 */
|
|
1166
|
+
name: string;
|
|
1167
|
+
/** 手机号码 */
|
|
1168
|
+
phone: string;
|
|
1169
|
+
/** 签字照片(兼容老字段) */
|
|
1170
|
+
pictureSign: string;
|
|
1171
|
+
/** 备注 */
|
|
1172
|
+
remark: string;
|
|
1173
|
+
/** 人员类型 */
|
|
1174
|
+
rylx: string;
|
|
1175
|
+
/**
|
|
1176
|
+
* 是否保险
|
|
1177
|
+
* @example false
|
|
1178
|
+
*/
|
|
1179
|
+
sfbx: boolean;
|
|
1180
|
+
/**
|
|
1181
|
+
* 是否出险
|
|
1182
|
+
* @example false
|
|
1183
|
+
*/
|
|
1184
|
+
sfcx: boolean;
|
|
1185
|
+
/**
|
|
1186
|
+
* 是否同意保险直赔
|
|
1187
|
+
* @example false
|
|
1188
|
+
*/
|
|
1189
|
+
sftybxzp: boolean;
|
|
1190
|
+
/**
|
|
1191
|
+
* 是否同意互碰自赔
|
|
1192
|
+
* @example false
|
|
1193
|
+
*/
|
|
1194
|
+
sftyhpzp: boolean;
|
|
1195
|
+
/** 事故编号 */
|
|
1196
|
+
sgbh: string;
|
|
1197
|
+
/** 事故情形 */
|
|
1198
|
+
sgqx: string;
|
|
1199
|
+
/** 事故责任 */
|
|
1200
|
+
sgzr: string;
|
|
1201
|
+
/** 伤害程度 */
|
|
1202
|
+
shcd: string;
|
|
1203
|
+
/** 签字照片 */
|
|
1204
|
+
signPicture: string;
|
|
1205
|
+
/**
|
|
1206
|
+
* 签字时间
|
|
1207
|
+
* @format int64
|
|
1208
|
+
*/
|
|
1209
|
+
signTime: number;
|
|
1210
|
+
/** 受损部位 */
|
|
1211
|
+
ssbw: string;
|
|
1212
|
+
/** 所有权 */
|
|
1213
|
+
syq: string;
|
|
1214
|
+
/** 商业险公司 */
|
|
1215
|
+
syxgs: string;
|
|
1216
|
+
/** 商业险保单号 */
|
|
1217
|
+
syxh: string;
|
|
1218
|
+
/**
|
|
1219
|
+
* 商业险保单有效截至日期
|
|
1220
|
+
* @format int64
|
|
1221
|
+
*/
|
|
1222
|
+
syxjzrq: number;
|
|
1223
|
+
/** 使用性质 */
|
|
1224
|
+
syxz: string;
|
|
1225
|
+
/** 违法行为 */
|
|
1226
|
+
wfxws: string[];
|
|
1227
|
+
/** 性别 */
|
|
1228
|
+
xb: string;
|
|
1229
|
+
/** 行驶方向 */
|
|
1230
|
+
xsfx: string;
|
|
1231
|
+
/** 人员行政区划 */
|
|
1232
|
+
xzqh: string;
|
|
1233
|
+
/** 准驾车型 */
|
|
1234
|
+
zjcx: string;
|
|
1235
|
+
/** 证件号码 */
|
|
1236
|
+
zjhm: string;
|
|
1237
|
+
/** 专业运输单位 */
|
|
1238
|
+
zyysdw: string;
|
|
1239
|
+
/** 住址 */
|
|
1240
|
+
zz: string;
|
|
778
1241
|
}
|
|
779
1242
|
export declare class AccidentUserDTOReq {
|
|
780
1243
|
/**
|
|
@@ -813,6 +1276,8 @@ export declare class AccidentUserDTOReq {
|
|
|
813
1276
|
clzzwp?: string;
|
|
814
1277
|
/** 档案编号 */
|
|
815
1278
|
dabh?: string;
|
|
1279
|
+
/** 当事人相关证据列表 */
|
|
1280
|
+
evidenceList?: Evidence[];
|
|
816
1281
|
/** 发动机号 */
|
|
817
1282
|
fdjh?: string;
|
|
818
1283
|
/** 发证机关 */
|
|
@@ -835,6 +1300,8 @@ export declare class AccidentUserDTOReq {
|
|
|
835
1300
|
jdcxh?: string;
|
|
836
1301
|
/** 机动车状态 */
|
|
837
1302
|
jdczt?: string;
|
|
1303
|
+
/** 关联决定书编号 */
|
|
1304
|
+
jdsbh?: string;
|
|
838
1305
|
/**
|
|
839
1306
|
* 驾龄
|
|
840
1307
|
* @format int32
|
|
@@ -973,6 +1440,8 @@ export declare class AccidentUserDTORes {
|
|
|
973
1440
|
clzzwp: string;
|
|
974
1441
|
/** 档案编号 */
|
|
975
1442
|
dabh: string;
|
|
1443
|
+
/** 当事人相关证据列表 */
|
|
1444
|
+
evidenceList: Evidence[];
|
|
976
1445
|
/** 发动机号 */
|
|
977
1446
|
fdjh: string;
|
|
978
1447
|
/** 发证机关 */
|
|
@@ -995,6 +1464,8 @@ export declare class AccidentUserDTORes {
|
|
|
995
1464
|
jdcxh: string;
|
|
996
1465
|
/** 机动车状态 */
|
|
997
1466
|
jdczt: string;
|
|
1467
|
+
/** 关联决定书编号 */
|
|
1468
|
+
jdsbh: string;
|
|
998
1469
|
/**
|
|
999
1470
|
* 驾龄
|
|
1000
1471
|
* @format int32
|
|
@@ -1116,6 +1587,21 @@ export declare class AccidentUserSimple {
|
|
|
1116
1587
|
syxjzrq: number;
|
|
1117
1588
|
zjhm: string;
|
|
1118
1589
|
}
|
|
1590
|
+
export declare class BindJdsbhRequest {
|
|
1591
|
+
/** 决定书编号 */
|
|
1592
|
+
jdsbh: string;
|
|
1593
|
+
/** 证件号码 */
|
|
1594
|
+
zjhm: string;
|
|
1595
|
+
}
|
|
1596
|
+
export declare class BindJjdbhRequest {
|
|
1597
|
+
/**
|
|
1598
|
+
* 报警时间
|
|
1599
|
+
* @format int64
|
|
1600
|
+
*/
|
|
1601
|
+
bjsj: number;
|
|
1602
|
+
/** 接警单编号 */
|
|
1603
|
+
jjdbh: string;
|
|
1604
|
+
}
|
|
1119
1605
|
export declare class DataItem {
|
|
1120
1606
|
indexCode: string;
|
|
1121
1607
|
indexValue: string;
|
|
@@ -1214,8 +1700,8 @@ export declare class PageResultAccidentDTO {
|
|
|
1214
1700
|
/** @format int64 */
|
|
1215
1701
|
total: number;
|
|
1216
1702
|
}
|
|
1217
|
-
export declare class
|
|
1218
|
-
list:
|
|
1703
|
+
export declare class PageResultAccidentForHeatMap {
|
|
1704
|
+
list: AccidentForHeatMap[];
|
|
1219
1705
|
/** @format int64 */
|
|
1220
1706
|
total: number;
|
|
1221
1707
|
}
|
|
@@ -1224,6 +1710,14 @@ export declare class PageResultAccidentSimpleInfo {
|
|
|
1224
1710
|
/** @format int64 */
|
|
1225
1711
|
total: number;
|
|
1226
1712
|
}
|
|
1713
|
+
export declare class Point {
|
|
1714
|
+
/** @format double */
|
|
1715
|
+
latitude: number;
|
|
1716
|
+
/** @format double */
|
|
1717
|
+
longitude: number;
|
|
1718
|
+
/** @format double */
|
|
1719
|
+
radius: number;
|
|
1720
|
+
}
|
|
1227
1721
|
export declare class PointReq {
|
|
1228
1722
|
/** @format double */
|
|
1229
1723
|
latitude?: number;
|
|
@@ -1240,6 +1734,129 @@ export declare class PointRes {
|
|
|
1240
1734
|
/** @format double */
|
|
1241
1735
|
radius: number;
|
|
1242
1736
|
}
|
|
1737
|
+
export declare class PoliceEvent {
|
|
1738
|
+
/** 案发地点 */
|
|
1739
|
+
afdd: string;
|
|
1740
|
+
/**
|
|
1741
|
+
* 案发时间
|
|
1742
|
+
* @format int64
|
|
1743
|
+
*/
|
|
1744
|
+
afsj: number;
|
|
1745
|
+
/** 到达现场部门 */
|
|
1746
|
+
arriveDepartment: string;
|
|
1747
|
+
/**
|
|
1748
|
+
* 到达现场时间
|
|
1749
|
+
* @format int64
|
|
1750
|
+
*/
|
|
1751
|
+
arriveTime: number;
|
|
1752
|
+
/** 到达现场用户 */
|
|
1753
|
+
arriveUser: string;
|
|
1754
|
+
/** 报警内容 */
|
|
1755
|
+
bjnr: string;
|
|
1756
|
+
/** 报警人姓名 */
|
|
1757
|
+
bjrxm: string;
|
|
1758
|
+
/**
|
|
1759
|
+
* 报警时间
|
|
1760
|
+
* @format int64
|
|
1761
|
+
*/
|
|
1762
|
+
bjsj: number;
|
|
1763
|
+
/**
|
|
1764
|
+
* 处理时间
|
|
1765
|
+
* @format int64
|
|
1766
|
+
*/
|
|
1767
|
+
clsj: number;
|
|
1768
|
+
/**
|
|
1769
|
+
* 创建时间
|
|
1770
|
+
* @format int64
|
|
1771
|
+
*/
|
|
1772
|
+
createTime: number;
|
|
1773
|
+
/** 创建人用户名 */
|
|
1774
|
+
createUser: string;
|
|
1775
|
+
/**
|
|
1776
|
+
* 是否已删除
|
|
1777
|
+
* @example false
|
|
1778
|
+
*/
|
|
1779
|
+
deleted: boolean;
|
|
1780
|
+
/** 数据签名 */
|
|
1781
|
+
digest: EntityDigest;
|
|
1782
|
+
/** 派警部门 */
|
|
1783
|
+
dispatchDepartment: string;
|
|
1784
|
+
/**
|
|
1785
|
+
* 派警时间
|
|
1786
|
+
* @format int64
|
|
1787
|
+
*/
|
|
1788
|
+
dispatchTime: number;
|
|
1789
|
+
/** 派警用户 */
|
|
1790
|
+
dispatchUser: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* 修改时间
|
|
1793
|
+
* @format int64
|
|
1794
|
+
*/
|
|
1795
|
+
editTime: number;
|
|
1796
|
+
/** 修改人用户名 */
|
|
1797
|
+
editUser: string;
|
|
1798
|
+
/** 证据列表 */
|
|
1799
|
+
evidenceList: Evidence[];
|
|
1800
|
+
/** 发现机关 */
|
|
1801
|
+
fxjg: string;
|
|
1802
|
+
/** 管辖单位代码 */
|
|
1803
|
+
gxdwdm: string;
|
|
1804
|
+
/** 事故处置部门 */
|
|
1805
|
+
handleDepartment: string;
|
|
1806
|
+
/**
|
|
1807
|
+
* 事故处置时间
|
|
1808
|
+
* @format int64
|
|
1809
|
+
*/
|
|
1810
|
+
handleTime: number;
|
|
1811
|
+
/** 事故处置用户 */
|
|
1812
|
+
handleUser: string;
|
|
1813
|
+
/**
|
|
1814
|
+
* 主键
|
|
1815
|
+
* @format int64
|
|
1816
|
+
*/
|
|
1817
|
+
id: number;
|
|
1818
|
+
/** 接警单编号 */
|
|
1819
|
+
jjdbh: string;
|
|
1820
|
+
/** 接警单位代码 */
|
|
1821
|
+
jjdwdm: string;
|
|
1822
|
+
/** 打标列表 */
|
|
1823
|
+
labelList: PoliceEventLabelDTO[];
|
|
1824
|
+
/** 经纬度 */
|
|
1825
|
+
latlng: Point;
|
|
1826
|
+
/** 报警人联系电话 */
|
|
1827
|
+
lxdh: string;
|
|
1828
|
+
/** 业务编号(系统自动生成) */
|
|
1829
|
+
processBusinessKey: string;
|
|
1830
|
+
/** 流程编号(系统自动生成) */
|
|
1831
|
+
processId: string;
|
|
1832
|
+
/** 接收派警部门 */
|
|
1833
|
+
receiveDepartment: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* 接收派警时间
|
|
1836
|
+
* @format int64
|
|
1837
|
+
*/
|
|
1838
|
+
receiveTime: number;
|
|
1839
|
+
/** 接收派警用户 */
|
|
1840
|
+
receiveUser: string;
|
|
1841
|
+
/** 备注 */
|
|
1842
|
+
remark: string;
|
|
1843
|
+
/** 根接警单编号 */
|
|
1844
|
+
rootJjdbh: string;
|
|
1845
|
+
/** 状态 */
|
|
1846
|
+
state: "Completed" | "Processing";
|
|
1847
|
+
/** 关联业务类型 */
|
|
1848
|
+
taskType: "Accident" | "PoliceEvent";
|
|
1849
|
+
/** 关联业务序号 */
|
|
1850
|
+
taskXh: string;
|
|
1851
|
+
/** 警情类型 */
|
|
1852
|
+
type: string;
|
|
1853
|
+
/** 警情类型其他 */
|
|
1854
|
+
typeOther: string;
|
|
1855
|
+
/** 天气 */
|
|
1856
|
+
weather: string;
|
|
1857
|
+
/** 行政区划 */
|
|
1858
|
+
xzqh: string;
|
|
1859
|
+
}
|
|
1243
1860
|
export declare class PoliceEventLabelDTO {
|
|
1244
1861
|
/** @format int64 */
|
|
1245
1862
|
id: number;
|
|
@@ -1358,6 +1975,8 @@ export declare class PoliceEventReq {
|
|
|
1358
1975
|
remark?: string;
|
|
1359
1976
|
/** 根接警单编号 */
|
|
1360
1977
|
rootJjdbh?: string;
|
|
1978
|
+
/** 状态 */
|
|
1979
|
+
state?: "Completed" | "Processing";
|
|
1361
1980
|
/** 关联业务类型 */
|
|
1362
1981
|
taskType?: "Accident" | "PoliceEvent";
|
|
1363
1982
|
/** 关联业务序号 */
|
|
@@ -1479,6 +2098,8 @@ export declare class PoliceEventRes {
|
|
|
1479
2098
|
remark: string;
|
|
1480
2099
|
/** 根接警单编号 */
|
|
1481
2100
|
rootJjdbh: string;
|
|
2101
|
+
/** 状态 */
|
|
2102
|
+
state: "Completed" | "Processing";
|
|
1482
2103
|
/** 关联业务类型 */
|
|
1483
2104
|
taskType: "Accident" | "PoliceEvent";
|
|
1484
2105
|
/** 关联业务序号 */
|
|
@@ -1511,6 +2132,85 @@ export declare class Resource {
|
|
|
1511
2132
|
/** @format url */
|
|
1512
2133
|
url: string;
|
|
1513
2134
|
}
|
|
2135
|
+
export declare class ScoreDTO {
|
|
2136
|
+
/** 协警编号 */
|
|
2137
|
+
auxiliaryPolice: string;
|
|
2138
|
+
/** 辅警用户姓名 */
|
|
2139
|
+
auxiliaryPoliceName: string;
|
|
2140
|
+
/** 业务编号 */
|
|
2141
|
+
code: string;
|
|
2142
|
+
/** 业务类型, ACCIDENT 事故, SURVEIL 违停, VIOLATION 简易处罚 */
|
|
2143
|
+
codeType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
2144
|
+
/** 内容 */
|
|
2145
|
+
content: string;
|
|
2146
|
+
/**
|
|
2147
|
+
* 创建时间
|
|
2148
|
+
* @format int64
|
|
2149
|
+
*/
|
|
2150
|
+
createTime: number;
|
|
2151
|
+
/** 创建人用户名 */
|
|
2152
|
+
createUser: string;
|
|
2153
|
+
/**
|
|
2154
|
+
* 是否已删除
|
|
2155
|
+
* @example false
|
|
2156
|
+
*/
|
|
2157
|
+
deleted: boolean;
|
|
2158
|
+
/** 所属部门 */
|
|
2159
|
+
department: string;
|
|
2160
|
+
/** 部门全称 */
|
|
2161
|
+
departmentFullname: string;
|
|
2162
|
+
/** 部门简称 */
|
|
2163
|
+
departmentShortname: string;
|
|
2164
|
+
/** 数据签名 */
|
|
2165
|
+
digest: EntityDigest;
|
|
2166
|
+
/**
|
|
2167
|
+
* 修改时间
|
|
2168
|
+
* @format int64
|
|
2169
|
+
*/
|
|
2170
|
+
editTime: number;
|
|
2171
|
+
/** 修改人用户名 */
|
|
2172
|
+
editUser: string;
|
|
2173
|
+
/**
|
|
2174
|
+
* 主键
|
|
2175
|
+
* @format int64
|
|
2176
|
+
*/
|
|
2177
|
+
id: number;
|
|
2178
|
+
/** 民警警员编号 */
|
|
2179
|
+
police: string;
|
|
2180
|
+
/** 民警姓名 */
|
|
2181
|
+
policeName: string;
|
|
2182
|
+
/** 业务key */
|
|
2183
|
+
processBusinessKey: string;
|
|
2184
|
+
/**
|
|
2185
|
+
* 评分
|
|
2186
|
+
* @format double
|
|
2187
|
+
*/
|
|
2188
|
+
score: number;
|
|
2189
|
+
/**
|
|
2190
|
+
* 评分2
|
|
2191
|
+
* @format double
|
|
2192
|
+
*/
|
|
2193
|
+
"score2": number;
|
|
2194
|
+
/**
|
|
2195
|
+
* 评分3
|
|
2196
|
+
* @format double
|
|
2197
|
+
*/
|
|
2198
|
+
"score3": number;
|
|
2199
|
+
/**
|
|
2200
|
+
* 评分4
|
|
2201
|
+
* @format double
|
|
2202
|
+
*/
|
|
2203
|
+
"score4": number;
|
|
2204
|
+
/**
|
|
2205
|
+
* 评分5
|
|
2206
|
+
* @format double
|
|
2207
|
+
*/
|
|
2208
|
+
"score5": number;
|
|
2209
|
+
/** 业务详情 */
|
|
2210
|
+
task: any;
|
|
2211
|
+
/** 评分当事人 */
|
|
2212
|
+
user: string;
|
|
2213
|
+
}
|
|
1514
2214
|
export declare class ScoreDTOReq {
|
|
1515
2215
|
/** 协警编号 */
|
|
1516
2216
|
auxiliaryPolice?: string;
|
|
@@ -1718,6 +2418,8 @@ export declare class GetAccidentParams {
|
|
|
1718
2418
|
hasInsuranceReport?: boolean;
|
|
1719
2419
|
/** 是否保险理赔完成 */
|
|
1720
2420
|
hasInsuranceSettlement?: boolean;
|
|
2421
|
+
/** 是否有关联决定书编号 */
|
|
2422
|
+
hasJdsbh?: boolean;
|
|
1721
2423
|
/** [当事人]号牌号码 */
|
|
1722
2424
|
hphm?: string;
|
|
1723
2425
|
/** [当事人]号牌种类 */
|
|
@@ -1735,6 +2437,8 @@ export declare class GetAccidentParams {
|
|
|
1735
2437
|
"jarUsername2"?: string;
|
|
1736
2438
|
/** 经办人 */
|
|
1737
2439
|
jbrUsername?: string;
|
|
2440
|
+
/** 决定书编号 */
|
|
2441
|
+
jdsbh?: string;
|
|
1738
2442
|
/** 接警单编号 */
|
|
1739
2443
|
jjdbh?: string;
|
|
1740
2444
|
/** 接警单是否为空 */
|
|
@@ -1865,6 +2569,8 @@ export declare class HeatMapParams {
|
|
|
1865
2569
|
hasInsuranceReport?: boolean;
|
|
1866
2570
|
/** 是否保险理赔完成 */
|
|
1867
2571
|
hasInsuranceSettlement?: boolean;
|
|
2572
|
+
/** 是否有关联决定书编号 */
|
|
2573
|
+
hasJdsbh?: boolean;
|
|
1868
2574
|
/** [当事人]号牌号码 */
|
|
1869
2575
|
hphm?: string;
|
|
1870
2576
|
/** [当事人]号牌种类 */
|
|
@@ -1882,6 +2588,8 @@ export declare class HeatMapParams {
|
|
|
1882
2588
|
"jarUsername2"?: string;
|
|
1883
2589
|
/** 经办人 */
|
|
1884
2590
|
jbrUsername?: string;
|
|
2591
|
+
/** 决定书编号 */
|
|
2592
|
+
jdsbh?: string;
|
|
1885
2593
|
/** 接警单编号 */
|
|
1886
2594
|
jjdbh?: string;
|
|
1887
2595
|
/** 接警单是否为空 */
|
|
@@ -1960,12 +2668,6 @@ export declare class HeatMapParams {
|
|
|
1960
2668
|
/** [当事人]证件号码 */
|
|
1961
2669
|
zjhm?: string;
|
|
1962
2670
|
}
|
|
1963
|
-
export declare class MakeupJjdbhBatchParams {
|
|
1964
|
-
/** begin */
|
|
1965
|
-
begin: string;
|
|
1966
|
-
/** end */
|
|
1967
|
-
end: string;
|
|
1968
|
-
}
|
|
1969
2671
|
export declare type PushStatisticToProvinceDataCollectPayload = string[];
|
|
1970
2672
|
export declare class SimpleParams {
|
|
1971
2673
|
/** 事故地址查询。支持模糊查询 */
|
|
@@ -2009,6 +2711,8 @@ export declare class SimpleParams {
|
|
|
2009
2711
|
hasInsuranceReport?: boolean;
|
|
2010
2712
|
/** 是否保险理赔完成 */
|
|
2011
2713
|
hasInsuranceSettlement?: boolean;
|
|
2714
|
+
/** 是否有关联决定书编号 */
|
|
2715
|
+
hasJdsbh?: boolean;
|
|
2012
2716
|
/** [当事人]号牌号码 */
|
|
2013
2717
|
hphm?: string;
|
|
2014
2718
|
/** [当事人]号牌种类 */
|
|
@@ -2026,6 +2730,8 @@ export declare class SimpleParams {
|
|
|
2026
2730
|
"jarUsername2"?: string;
|
|
2027
2731
|
/** 经办人 */
|
|
2028
2732
|
jbrUsername?: string;
|
|
2733
|
+
/** 决定书编号 */
|
|
2734
|
+
jdsbh?: string;
|
|
2029
2735
|
/** 接警单编号 */
|
|
2030
2736
|
jjdbh?: string;
|
|
2031
2737
|
/** 接警单是否为空 */
|
|
@@ -2104,6 +2810,12 @@ export declare class SimpleParams {
|
|
|
2104
2810
|
/** [当事人]证件号码 */
|
|
2105
2811
|
zjhm?: string;
|
|
2106
2812
|
}
|
|
2813
|
+
export declare class TryBindJjdbhBatchParams {
|
|
2814
|
+
/** begin */
|
|
2815
|
+
begin: string;
|
|
2816
|
+
/** end */
|
|
2817
|
+
end: string;
|
|
2818
|
+
}
|
|
2107
2819
|
export declare class BySgbhParams {
|
|
2108
2820
|
/** withScoreInfo */
|
|
2109
2821
|
withScoreInfo: boolean;
|
|
@@ -2134,6 +2846,153 @@ export declare class ReportPreviewBySgbhParams {
|
|
|
2134
2846
|
/** sgbh */
|
|
2135
2847
|
sgbh: string;
|
|
2136
2848
|
}
|
|
2849
|
+
export declare class DetailBySgbhParams {
|
|
2850
|
+
/** withScoreInfo */
|
|
2851
|
+
withScoreInfo: boolean;
|
|
2852
|
+
/** sgbh */
|
|
2853
|
+
sgbh: string;
|
|
2854
|
+
}
|
|
2855
|
+
export declare class SimpleParams5 {
|
|
2856
|
+
/** 事故地址查询。支持模糊查询 */
|
|
2857
|
+
address?: string;
|
|
2858
|
+
/** 按保险理赔编号查询 */
|
|
2859
|
+
bxlpNo?: string;
|
|
2860
|
+
/** [当事人]车架号 */
|
|
2861
|
+
cjh?: string;
|
|
2862
|
+
/**
|
|
2863
|
+
* 事故定责完成时间起始
|
|
2864
|
+
* @format int64
|
|
2865
|
+
*/
|
|
2866
|
+
completedTimeBegin?: number;
|
|
2867
|
+
/**
|
|
2868
|
+
* 事故定责完成时间截止
|
|
2869
|
+
* @format int64
|
|
2870
|
+
*/
|
|
2871
|
+
completedTimeEnd?: number;
|
|
2872
|
+
deleted?: boolean;
|
|
2873
|
+
/** 部门代码 */
|
|
2874
|
+
department?: string;
|
|
2875
|
+
/** 部门匹配字段 */
|
|
2876
|
+
departmentField?: string;
|
|
2877
|
+
/** 部门代码(In查询) */
|
|
2878
|
+
departmentIn?: string[];
|
|
2879
|
+
/**
|
|
2880
|
+
* 最后修改时间起始
|
|
2881
|
+
* @format int64
|
|
2882
|
+
*/
|
|
2883
|
+
editTimeBegin?: number;
|
|
2884
|
+
/**
|
|
2885
|
+
* 最后修改时间截止
|
|
2886
|
+
* @format int64
|
|
2887
|
+
*/
|
|
2888
|
+
editTimeEnd?: number;
|
|
2889
|
+
/** 是否仅取证, 不与处理 */
|
|
2890
|
+
evidencedOnly?: boolean;
|
|
2891
|
+
/** 是否保险理赔进行中 */
|
|
2892
|
+
hasInsuranceClaim?: boolean;
|
|
2893
|
+
/** 是否有保险报案记录 */
|
|
2894
|
+
hasInsuranceReport?: boolean;
|
|
2895
|
+
/** 是否保险理赔完成 */
|
|
2896
|
+
hasInsuranceSettlement?: boolean;
|
|
2897
|
+
/** 是否有关联决定书编号 */
|
|
2898
|
+
hasJdsbh?: boolean;
|
|
2899
|
+
/** [当事人]号牌号码 */
|
|
2900
|
+
hphm?: string;
|
|
2901
|
+
/** [当事人]号牌种类 */
|
|
2902
|
+
hpzl?: string;
|
|
2903
|
+
ids?: number[];
|
|
2904
|
+
/** 是否包含子部门 */
|
|
2905
|
+
includeSubDepartment?: boolean;
|
|
2906
|
+
/** [当事人]涉及的保险公司(代码) */
|
|
2907
|
+
insuranceCompany?: string;
|
|
2908
|
+
/** 是否有保险报案成功记录 */
|
|
2909
|
+
insuranceReportSuccess?: boolean;
|
|
2910
|
+
/** 结案人1 */
|
|
2911
|
+
"jarUsername1"?: string;
|
|
2912
|
+
/** 结案人2 */
|
|
2913
|
+
"jarUsername2"?: string;
|
|
2914
|
+
/** 经办人 */
|
|
2915
|
+
jbrUsername?: string;
|
|
2916
|
+
/** 决定书编号 */
|
|
2917
|
+
jdsbh?: string;
|
|
2918
|
+
/** 接警单编号 */
|
|
2919
|
+
jjdbh?: string;
|
|
2920
|
+
/** 接警单是否为空 */
|
|
2921
|
+
jjdbhIsEmpty?: boolean;
|
|
2922
|
+
/** [当事人]交强险编号 */
|
|
2923
|
+
jqxh?: string;
|
|
2924
|
+
/** 警情小类。支持多选 */
|
|
2925
|
+
jqxlIn?: string[];
|
|
2926
|
+
/** 交通方式。支持多选 */
|
|
2927
|
+
jtfsIn?: string[];
|
|
2928
|
+
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
2929
|
+
jtfsLike?: string;
|
|
2930
|
+
/** 是否必须经过部门条件过滤 */
|
|
2931
|
+
mustFilterByDepartment?: boolean;
|
|
2932
|
+
orderBy?: string[];
|
|
2933
|
+
/** 事故来源 */
|
|
2934
|
+
origin?: string[];
|
|
2935
|
+
/** @format int32 */
|
|
2936
|
+
pageIndex?: number;
|
|
2937
|
+
/** @format int32 */
|
|
2938
|
+
pageSize?: number;
|
|
2939
|
+
/** [当事人]电话 */
|
|
2940
|
+
phone?: string;
|
|
2941
|
+
/** [当事人]电话或证件号码 */
|
|
2942
|
+
phoneOrZjhm?: string;
|
|
2943
|
+
/** 事故业务编号(processUid) */
|
|
2944
|
+
processBusinessKey?: string;
|
|
2945
|
+
/** 事故流程编号 */
|
|
2946
|
+
processId?: string;
|
|
2947
|
+
/** 推送六合一状态, 支持多选 */
|
|
2948
|
+
pushStateIn?: "Cancel" | "Done" | "Error" | "Init" | "Suspend" | "Wait";
|
|
2949
|
+
/** 模版类型(In查询) */
|
|
2950
|
+
reportTemplateTypeIn?: "ADJUST" | "IDENTIFICATION" | "NEGOTIATION" | "PROVE";
|
|
2951
|
+
/** 业务场景。支持多选 */
|
|
2952
|
+
sceneIn?: "ByFj" | "ByMj" | "BySgzdMj";
|
|
2953
|
+
/** [当事人]是否出险 */
|
|
2954
|
+
sfcx?: boolean;
|
|
2955
|
+
/** 事故编号 */
|
|
2956
|
+
sgbh?: string;
|
|
2957
|
+
/** 事故地点查询。支持模糊查询 */
|
|
2958
|
+
sgdd?: string;
|
|
2959
|
+
/** 事故情形。支持多选 */
|
|
2960
|
+
sgqxIn?: string[];
|
|
2961
|
+
/** 事故形态。支持多选 */
|
|
2962
|
+
sgxtIn?: string[];
|
|
2963
|
+
/** [当事人]事故责任 */
|
|
2964
|
+
sgzrIn?: string[];
|
|
2965
|
+
/** 事故状态 */
|
|
2966
|
+
stateIn?: "CANCELED" | "COMPLETED" | "RUNNING";
|
|
2967
|
+
/** [当事人]商业险编号 */
|
|
2968
|
+
syxh?: string;
|
|
2969
|
+
/** 是否为测试数据 */
|
|
2970
|
+
testData?: boolean;
|
|
2971
|
+
/**
|
|
2972
|
+
* 事故上报时间起始
|
|
2973
|
+
* @format int64
|
|
2974
|
+
*/
|
|
2975
|
+
timeBegin?: number;
|
|
2976
|
+
/**
|
|
2977
|
+
* 事故上报时间截止
|
|
2978
|
+
* @format int64
|
|
2979
|
+
*/
|
|
2980
|
+
timeEnd?: number;
|
|
2981
|
+
/** 调解人 */
|
|
2982
|
+
tjrUsername?: string;
|
|
2983
|
+
/** 辖区 */
|
|
2984
|
+
townCode?: string;
|
|
2985
|
+
/** 事故类型 */
|
|
2986
|
+
typeIn?: string[];
|
|
2987
|
+
/** 是否进行过远程视频 */
|
|
2988
|
+
videoRecord?: boolean;
|
|
2989
|
+
/** 返回结果包含关联警情 */
|
|
2990
|
+
withPoliceEvent?: boolean;
|
|
2991
|
+
/** 返回结果包含当事人评分数据 */
|
|
2992
|
+
withScoreInfo?: boolean;
|
|
2993
|
+
/** [当事人]证件号码 */
|
|
2994
|
+
zjhm?: string;
|
|
2995
|
+
}
|
|
2137
2996
|
import { AxiosRequestConfig, ResponseType } from "axios";
|
|
2138
2997
|
export declare type QueryParamsType = Record<string | number, any>;
|
|
2139
2998
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -2176,7 +3035,7 @@ declare class Api {
|
|
|
2176
3035
|
constructor(http: HttpClient);
|
|
2177
3036
|
accident: {
|
|
2178
3037
|
/**
|
|
2179
|
-
*
|
|
3038
|
+
* @description 所需权限:accident:history:list
|
|
2180
3039
|
*
|
|
2181
3040
|
* @tags accident
|
|
2182
3041
|
* @name GetAccident
|
|
@@ -2189,7 +3048,7 @@ declare class Api {
|
|
|
2189
3048
|
*/
|
|
2190
3049
|
getAccident: (query: GetAccidentParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
|
|
2191
3050
|
/**
|
|
2192
|
-
* @description
|
|
3051
|
+
* @description 按事故编号进行更新,不存在的话则新增<br>所需权限:accident:handle
|
|
2193
3052
|
*
|
|
2194
3053
|
* @tags accident
|
|
2195
3054
|
* @name PostAccident
|
|
@@ -2202,12 +3061,10 @@ declare class Api {
|
|
|
2202
3061
|
* @response `404` `void` Not Found
|
|
2203
3062
|
*/
|
|
2204
3063
|
postAccident: (data: AccidentDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2205
|
-
};
|
|
2206
|
-
dataClear: {
|
|
2207
3064
|
/**
|
|
2208
|
-
*
|
|
3065
|
+
* @description 所需权限:accident:handle
|
|
2209
3066
|
*
|
|
2210
|
-
* @tags
|
|
3067
|
+
* @tags accident
|
|
2211
3068
|
* @name DataClearClearExpiredAccident
|
|
2212
3069
|
* @summary 撤销过期未处理的事故流程
|
|
2213
3070
|
* @request POST:/sz-accident-service/accident/data-clear/clear-expired-accident
|
|
@@ -2218,12 +3075,10 @@ declare class Api {
|
|
|
2218
3075
|
* @response `404` `void` Not Found
|
|
2219
3076
|
*/
|
|
2220
3077
|
dataClearClearExpiredAccident: (query: DataClearClearExpiredAccidentParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2221
|
-
};
|
|
2222
|
-
dataCollect: {
|
|
2223
3078
|
/**
|
|
2224
|
-
*
|
|
3079
|
+
* @description 所需权限:accident:handle
|
|
2225
3080
|
*
|
|
2226
|
-
* @tags
|
|
3081
|
+
* @tags accident
|
|
2227
3082
|
* @name DataCollectSetLastTimeByDateString
|
|
2228
3083
|
* @summary 手动设置浙里快处推送时间节点
|
|
2229
3084
|
* @request POST:/sz-accident-service/accident/data-collect/set-last-time/{dateString}
|
|
@@ -2234,12 +3089,10 @@ declare class Api {
|
|
|
2234
3089
|
* @response `404` `void` Not Found
|
|
2235
3090
|
*/
|
|
2236
3091
|
dataCollectSetLastTimeByDateString: (dateString: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2237
|
-
};
|
|
2238
|
-
getStatisticToProvinceDataCollect: {
|
|
2239
3092
|
/**
|
|
2240
|
-
*
|
|
3093
|
+
* @description 所需权限:accident:history:list
|
|
2241
3094
|
*
|
|
2242
|
-
* @tags
|
|
3095
|
+
* @tags accident
|
|
2243
3096
|
* @name GetStatisticToProvinceDataCollect
|
|
2244
3097
|
* @summary 查看当前事故统计项目
|
|
2245
3098
|
* @request POST:/sz-accident-service/accident/get-statistic-to-province-data-collect
|
|
@@ -2250,43 +3103,23 @@ declare class Api {
|
|
|
2250
3103
|
* @response `404` `void` Not Found
|
|
2251
3104
|
*/
|
|
2252
3105
|
getStatisticToProvinceDataCollect: (data: GetStatisticToProvinceDataCollectPayload, axiosConfig?: AxiosRequestConfig) => Promise<DataItem[]>;
|
|
2253
|
-
};
|
|
2254
|
-
heatMap: {
|
|
2255
3106
|
/**
|
|
2256
|
-
*
|
|
3107
|
+
* @description 所需权限:accident:history:list
|
|
2257
3108
|
*
|
|
2258
|
-
* @tags
|
|
3109
|
+
* @tags accident
|
|
2259
3110
|
* @name HeatMap
|
|
2260
3111
|
* @summary 事故热力图分页查询
|
|
2261
3112
|
* @request GET:/sz-accident-service/accident/heat-map
|
|
2262
|
-
* @response `200` `
|
|
2263
|
-
* @response `401` `void` Unauthorized
|
|
2264
|
-
* @response `403` `void` Forbidden
|
|
2265
|
-
* @response `404` `void` Not Found
|
|
2266
|
-
*/
|
|
2267
|
-
heatMap: (query: HeatMapParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleForHeatMap>;
|
|
2268
|
-
};
|
|
2269
|
-
makeupJjdbhBatch: {
|
|
2270
|
-
/**
|
|
2271
|
-
* No description
|
|
2272
|
-
*
|
|
2273
|
-
* @tags makeupJjdbhBatch
|
|
2274
|
-
* @name MakeupJjdbhBatch
|
|
2275
|
-
* @summary 批量修复事故接警单编号
|
|
2276
|
-
* @request POST:/sz-accident-service/accident/makeup-jjdbh-batch
|
|
2277
|
-
* @response `200` `void` OK
|
|
2278
|
-
* @response `201` `void` Created
|
|
3113
|
+
* @response `200` `PageResultAccidentForHeatMap` OK
|
|
2279
3114
|
* @response `401` `void` Unauthorized
|
|
2280
3115
|
* @response `403` `void` Forbidden
|
|
2281
3116
|
* @response `404` `void` Not Found
|
|
2282
3117
|
*/
|
|
2283
|
-
|
|
2284
|
-
};
|
|
2285
|
-
pushStatisticToProvinceDataCollect: {
|
|
3118
|
+
heatMap: (query: HeatMapParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentForHeatMap>;
|
|
2286
3119
|
/**
|
|
2287
|
-
*
|
|
3120
|
+
* @description 所需权限:accident:handle
|
|
2288
3121
|
*
|
|
2289
|
-
* @tags
|
|
3122
|
+
* @tags accident
|
|
2290
3123
|
* @name PushStatisticToProvinceDataCollect
|
|
2291
3124
|
* @summary 发送事故统计项目到事故归集系统
|
|
2292
3125
|
* @request POST:/sz-accident-service/accident/push-statistic-to-province-data-collect
|
|
@@ -2297,12 +3130,10 @@ declare class Api {
|
|
|
2297
3130
|
* @response `404` `void` Not Found
|
|
2298
3131
|
*/
|
|
2299
3132
|
pushStatisticToProvinceDataCollect: (data: PushStatisticToProvinceDataCollectPayload, axiosConfig?: AxiosRequestConfig) => Promise<StatisticDataResponse>;
|
|
2300
|
-
};
|
|
2301
|
-
simple: {
|
|
2302
3133
|
/**
|
|
2303
|
-
*
|
|
3134
|
+
* @description 所需权限:accident:history:list
|
|
2304
3135
|
*
|
|
2305
|
-
* @tags
|
|
3136
|
+
* @tags accident
|
|
2306
3137
|
* @name Simple
|
|
2307
3138
|
* @summary 事故简项信息分页查询
|
|
2308
3139
|
* @request GET:/sz-accident-service/accident/simple
|
|
@@ -2312,12 +3143,24 @@ declare class Api {
|
|
|
2312
3143
|
* @response `404` `void` Not Found
|
|
2313
3144
|
*/
|
|
2314
3145
|
simple: (query: SimpleParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleInfo>;
|
|
2315
|
-
};
|
|
2316
|
-
user: {
|
|
2317
3146
|
/**
|
|
2318
|
-
* @description
|
|
3147
|
+
* @description 所需权限:accident:handle
|
|
3148
|
+
*
|
|
3149
|
+
* @tags accident
|
|
3150
|
+
* @name TryBindJjdbhBatch
|
|
3151
|
+
* @summary 批量修复事故接警单编号
|
|
3152
|
+
* @request POST:/sz-accident-service/accident/try-bind-jjdbh-batch
|
|
3153
|
+
* @response `200` `void` OK
|
|
3154
|
+
* @response `201` `void` Created
|
|
3155
|
+
* @response `401` `void` Unauthorized
|
|
3156
|
+
* @response `403` `void` Forbidden
|
|
3157
|
+
* @response `404` `void` Not Found
|
|
3158
|
+
*/
|
|
3159
|
+
tryBindJjdbhBatch: (query: TryBindJjdbhBatchParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
3160
|
+
/**
|
|
3161
|
+
* @description 按事故编号和当事人证件号码进行更新<br>所需权限:accident:handle
|
|
2319
3162
|
*
|
|
2320
|
-
* @tags
|
|
3163
|
+
* @tags accident
|
|
2321
3164
|
* @name User
|
|
2322
3165
|
* @summary 修改用户当事人信息
|
|
2323
3166
|
* @request POST:/sz-accident-service/accident/user
|
|
@@ -2328,12 +3171,10 @@ declare class Api {
|
|
|
2328
3171
|
* @response `404` `void` Not Found
|
|
2329
3172
|
*/
|
|
2330
3173
|
user: (data: AccidentUserDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<number>;
|
|
2331
|
-
};
|
|
2332
|
-
sgbh: {
|
|
2333
3174
|
/**
|
|
2334
|
-
*
|
|
3175
|
+
* @description 所需权限:accident:history:list
|
|
2335
3176
|
*
|
|
2336
|
-
* @tags
|
|
3177
|
+
* @tags accident
|
|
2337
3178
|
* @name BySgbh
|
|
2338
3179
|
* @summary 按事故编号查询事故信息
|
|
2339
3180
|
* @request GET:/sz-accident-service/accident/{sgbh}
|
|
@@ -2344,9 +3185,37 @@ declare class Api {
|
|
|
2344
3185
|
*/
|
|
2345
3186
|
bySgbh: ({ sgbh, ...query }: BySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<AccidentDTORes>;
|
|
2346
3187
|
/**
|
|
2347
|
-
*
|
|
3188
|
+
* @description 所需权限:accident:handle
|
|
3189
|
+
*
|
|
3190
|
+
* @tags accident
|
|
3191
|
+
* @name BindJdsbhBySgbh
|
|
3192
|
+
* @summary 绑定决定书编号
|
|
3193
|
+
* @request POST:/sz-accident-service/accident/{sgbh}/bind-jdsbh
|
|
3194
|
+
* @response `200` `void` OK
|
|
3195
|
+
* @response `201` `void` Created
|
|
3196
|
+
* @response `401` `void` Unauthorized
|
|
3197
|
+
* @response `403` `void` Forbidden
|
|
3198
|
+
* @response `404` `void` Not Found
|
|
3199
|
+
*/
|
|
3200
|
+
bindJdsbhBySgbh: (sgbh: string, data: BindJdsbhRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
3201
|
+
/**
|
|
3202
|
+
* @description 所需权限:accident:handle
|
|
3203
|
+
*
|
|
3204
|
+
* @tags accident
|
|
3205
|
+
* @name BindJjdbhBySgbh
|
|
3206
|
+
* @summary 绑定接警单编号
|
|
3207
|
+
* @request POST:/sz-accident-service/accident/{sgbh}/bind-jjdbh
|
|
3208
|
+
* @response `200` `void` OK
|
|
3209
|
+
* @response `201` `void` Created
|
|
3210
|
+
* @response `401` `void` Unauthorized
|
|
3211
|
+
* @response `403` `void` Forbidden
|
|
3212
|
+
* @response `404` `void` Not Found
|
|
3213
|
+
*/
|
|
3214
|
+
bindJjdbhBySgbh: (sgbh: string, data: BindJjdbhRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
3215
|
+
/**
|
|
3216
|
+
* @description 所需权限:accident:handle
|
|
2348
3217
|
*
|
|
2349
|
-
* @tags
|
|
3218
|
+
* @tags accident
|
|
2350
3219
|
* @name PutCancelBySgbh
|
|
2351
3220
|
* @summary 事故记录撤销
|
|
2352
3221
|
* @request PUT:/sz-accident-service/accident/{sgbh}/cancel
|
|
@@ -2358,9 +3227,9 @@ declare class Api {
|
|
|
2358
3227
|
*/
|
|
2359
3228
|
putCancelBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2360
3229
|
/**
|
|
2361
|
-
*
|
|
3230
|
+
* @description 所需权限:accident:history:list
|
|
2362
3231
|
*
|
|
2363
|
-
* @tags
|
|
3232
|
+
* @tags accident
|
|
2364
3233
|
* @name ChangeRecordsBySgbh
|
|
2365
3234
|
* @summary 根据事故编号获取事故信息修改记录
|
|
2366
3235
|
* @request GET:/sz-accident-service/accident/{sgbh}/change-records
|
|
@@ -2371,9 +3240,9 @@ declare class Api {
|
|
|
2371
3240
|
*/
|
|
2372
3241
|
changeRecordsBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<FieldChangeDTO[]>;
|
|
2373
3242
|
/**
|
|
2374
|
-
*
|
|
3243
|
+
* @description 所需权限:accident:handle
|
|
2375
3244
|
*
|
|
2376
|
-
* @tags
|
|
3245
|
+
* @tags accident
|
|
2377
3246
|
* @name PutDeletedBySgbh
|
|
2378
3247
|
* @summary 事故标记为删除
|
|
2379
3248
|
* @request PUT:/sz-accident-service/accident/{sgbh}/deleted
|
|
@@ -2385,9 +3254,9 @@ declare class Api {
|
|
|
2385
3254
|
*/
|
|
2386
3255
|
putDeletedBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2387
3256
|
/**
|
|
2388
|
-
*
|
|
3257
|
+
* @description 所需权限:accident:handle
|
|
2389
3258
|
*
|
|
2390
|
-
* @tags
|
|
3259
|
+
* @tags accident
|
|
2391
3260
|
* @name MakeupGeoinfoBySgbh
|
|
2392
3261
|
* @summary 修复事故地理位置相关信息
|
|
2393
3262
|
* @request POST:/sz-accident-service/accident/{sgbh}/makeup-geoinfo
|
|
@@ -2399,23 +3268,9 @@ declare class Api {
|
|
|
2399
3268
|
*/
|
|
2400
3269
|
makeupGeoinfoBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2401
3270
|
/**
|
|
2402
|
-
*
|
|
2403
|
-
*
|
|
2404
|
-
* @tags {sgbh}
|
|
2405
|
-
* @name MakeupJjdbhBySgbh
|
|
2406
|
-
* @summary 修复事故接警单编号
|
|
2407
|
-
* @request POST:/sz-accident-service/accident/{sgbh}/makeup-jjdbh
|
|
2408
|
-
* @response `200` `void` OK
|
|
2409
|
-
* @response `201` `void` Created
|
|
2410
|
-
* @response `401` `void` Unauthorized
|
|
2411
|
-
* @response `403` `void` Forbidden
|
|
2412
|
-
* @response `404` `void` Not Found
|
|
2413
|
-
*/
|
|
2414
|
-
makeupJjdbhBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2415
|
-
/**
|
|
2416
|
-
* No description
|
|
3271
|
+
* @description 所需权限:accident:handle
|
|
2417
3272
|
*
|
|
2418
|
-
* @tags
|
|
3273
|
+
* @tags accident
|
|
2419
3274
|
* @name PushToProvinceDataCollectBySgbh
|
|
2420
3275
|
* @summary 发送指定事故编号的记录到事故归集系统
|
|
2421
3276
|
* @request POST:/sz-accident-service/accident/{sgbh}/push-to-province-data-collect
|
|
@@ -2427,9 +3282,9 @@ declare class Api {
|
|
|
2427
3282
|
*/
|
|
2428
3283
|
pushToProvinceDataCollectBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2429
3284
|
/**
|
|
2430
|
-
*
|
|
3285
|
+
* @description 所需权限:accident:handle
|
|
2431
3286
|
*
|
|
2432
|
-
* @tags
|
|
3287
|
+
* @tags accident
|
|
2433
3288
|
* @name PushToTrffBySgbh
|
|
2434
3289
|
* @summary 按事故编号将事故推送到六合一
|
|
2435
3290
|
* @request POST:/sz-accident-service/accident/{sgbh}/push-to-trff
|
|
@@ -2441,9 +3296,9 @@ declare class Api {
|
|
|
2441
3296
|
*/
|
|
2442
3297
|
pushToTrffBySgbh: ({ sgbh, ...query }: PushToTrffBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<AccidentPushResponse>;
|
|
2443
3298
|
/**
|
|
2444
|
-
*
|
|
3299
|
+
* @description 所需权限:accident:handle
|
|
2445
3300
|
*
|
|
2446
|
-
* @tags
|
|
3301
|
+
* @tags accident
|
|
2447
3302
|
* @name PutRecoverBySgbh
|
|
2448
3303
|
* @summary 事故记录恢复
|
|
2449
3304
|
* @request PUT:/sz-accident-service/accident/{sgbh}/recover
|
|
@@ -2455,9 +3310,9 @@ declare class Api {
|
|
|
2455
3310
|
*/
|
|
2456
3311
|
putRecoverBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
2457
3312
|
/**
|
|
2458
|
-
*
|
|
3313
|
+
* @description 所需权限:accident:history:list
|
|
2459
3314
|
*
|
|
2460
|
-
* @tags
|
|
3315
|
+
* @tags accident
|
|
2461
3316
|
* @name ReportDownloadBySgbh
|
|
2462
3317
|
* @summary 下载事故认定书pdf文件
|
|
2463
3318
|
* @request GET:/sz-accident-service/accident/{sgbh}/report/download
|
|
@@ -2468,9 +3323,9 @@ declare class Api {
|
|
|
2468
3323
|
*/
|
|
2469
3324
|
reportDownloadBySgbh: ({ sgbh, ...query }: ReportDownloadBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<Resource>;
|
|
2470
3325
|
/**
|
|
2471
|
-
*
|
|
3326
|
+
* @description 所需权限:accident:history:list
|
|
2472
3327
|
*
|
|
2473
|
-
* @tags
|
|
3328
|
+
* @tags accident
|
|
2474
3329
|
* @name ReportDownloadPictureBySgbh
|
|
2475
3330
|
* @summary 下载事故认定书jpeg文件
|
|
2476
3331
|
* @request GET:/sz-accident-service/accident/{sgbh}/report/download-picture
|
|
@@ -2481,9 +3336,9 @@ declare class Api {
|
|
|
2481
3336
|
*/
|
|
2482
3337
|
reportDownloadPictureBySgbh: ({ sgbh, ...query }: ReportDownloadPictureBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<Resource>;
|
|
2483
3338
|
/**
|
|
2484
|
-
*
|
|
3339
|
+
* @description 所需权限:accident:handle
|
|
2485
3340
|
*
|
|
2486
|
-
* @tags
|
|
3341
|
+
* @tags accident
|
|
2487
3342
|
* @name ReportPreviewBySgbh
|
|
2488
3343
|
* @summary 生成事故认定书
|
|
2489
3344
|
* @request GET:/sz-accident-service/accident/{sgbh}/report/preview
|
|
@@ -2493,6 +3348,48 @@ declare class Api {
|
|
|
2493
3348
|
* @response `404` `void` Not Found
|
|
2494
3349
|
*/
|
|
2495
3350
|
reportPreviewBySgbh: ({ sgbh, ...query }: ReportPreviewBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<RenderResult>;
|
|
3351
|
+
/**
|
|
3352
|
+
* @description 根据时间、报警人手机尝试自动关联接警单<br>所需权限:accident:handle
|
|
3353
|
+
*
|
|
3354
|
+
* @tags accident
|
|
3355
|
+
* @name TryBindJjdbhBySgbh
|
|
3356
|
+
* @summary 修复事故接警单编号
|
|
3357
|
+
* @request POST:/sz-accident-service/accident/{sgbh}/try-bind-jjdbh
|
|
3358
|
+
* @response `200` `AccidentJjdbhBindResult` OK
|
|
3359
|
+
* @response `201` `void` Created
|
|
3360
|
+
* @response `401` `void` Unauthorized
|
|
3361
|
+
* @response `403` `void` Forbidden
|
|
3362
|
+
* @response `404` `void` Not Found
|
|
3363
|
+
*/
|
|
3364
|
+
tryBindJjdbhBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<AccidentJjdbhBindResult>;
|
|
3365
|
+
};
|
|
3366
|
+
accidentForInsuranceUser: {
|
|
3367
|
+
/**
|
|
3368
|
+
* @description 所需权限:accident:history:list-for-insurance
|
|
3369
|
+
*
|
|
3370
|
+
* @tags accidentForInsuranceUser
|
|
3371
|
+
* @name DetailBySgbh
|
|
3372
|
+
* @summary 按事故编号查询事故信息
|
|
3373
|
+
* @request GET:/sz-accident-service/accident-for-insurance-user/detail/{sgbh}
|
|
3374
|
+
* @response `200` `AccidentDTO` OK
|
|
3375
|
+
* @response `401` `void` Unauthorized
|
|
3376
|
+
* @response `403` `void` Forbidden
|
|
3377
|
+
* @response `404` `void` Not Found
|
|
3378
|
+
*/
|
|
3379
|
+
detailBySgbh: ({ sgbh, ...query }: DetailBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<AccidentDTO>;
|
|
3380
|
+
/**
|
|
3381
|
+
* @description 所需权限:accident:history:list-for-insurance
|
|
3382
|
+
*
|
|
3383
|
+
* @tags accidentForInsuranceUser
|
|
3384
|
+
* @name Simple
|
|
3385
|
+
* @summary 事故简项信息分页查询
|
|
3386
|
+
* @request GET:/sz-accident-service/accident-for-insurance-user/simple
|
|
3387
|
+
* @response `200` `PageResultAccidentSimpleInfo` OK
|
|
3388
|
+
* @response `401` `void` Unauthorized
|
|
3389
|
+
* @response `403` `void` Forbidden
|
|
3390
|
+
* @response `404` `void` Not Found
|
|
3391
|
+
*/
|
|
3392
|
+
simple: (query: SimpleParams5, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleInfo>;
|
|
2496
3393
|
};
|
|
2497
3394
|
}
|
|
2498
3395
|
export declare const szAccidentApi: Api;
|