szpt-driver-api 1.0.23 → 1.0.24

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 CHANGED
@@ -21,6 +21,10 @@ export declare class AccidentDTOReq {
21
21
  createTime?: number;
22
22
  /** 创建人用户名 */
23
23
  createUser?: string;
24
+ /** 档案号 */
25
+ dah?: string;
26
+ /** 地点米数 */
27
+ ddms?: string;
24
28
  /**
25
29
  * 是否已删除
26
30
  * @example false
@@ -34,6 +38,8 @@ export declare class AccidentDTOReq {
34
38
  departmentShortname?: string;
35
39
  /** 数据签名 */
36
40
  digest?: EntityDigest;
41
+ /** 道路代码 */
42
+ dldm?: string;
37
43
  /**
38
44
  * 修改时间
39
45
  * @format int64
@@ -51,10 +57,20 @@ export declare class AccidentDTOReq {
51
57
  * @format int64
52
58
  */
53
59
  id?: number;
60
+ /** 结案方式 */
61
+ jafs?: string;
62
+ /** 结案人1 */
63
+ "jar1"?: string;
64
+ /** 结案人2 */
65
+ "jar2"?: string;
66
+ /** 经办人 */
67
+ jbr?: string;
54
68
  /** 打标列表 */
55
69
  labelList?: AccidentLabelDTO[];
56
70
  /** 经纬度 */
57
71
  latlng?: PointReq;
72
+ /** 路段代码 */
73
+ lddm?: string;
58
74
  modifyForSgbh?: string;
59
75
  /** 事故来源 */
60
76
  origin?: string;
@@ -115,6 +131,8 @@ export declare class AccidentDTOReq {
115
131
  reportZjhm?: string;
116
132
  /** 事故编号 */
117
133
  sgbh?: string;
134
+ /** 事故地点 */
135
+ sgdd?: string;
118
136
  /** 事故结案备注 */
119
137
  sgjabz?: string;
120
138
  /** 事故结案渠道 */
@@ -123,10 +141,17 @@ export declare class AccidentDTOReq {
123
141
  sgms?: string;
124
142
  /** 事故情形 */
125
143
  sgqx?: string;
144
+ /** 事故认定原因 */
145
+ sgrdyy?: string;
126
146
  /** 事故形态 */
127
147
  sgxt?: string;
128
148
  /** 事故形态2, 机机,机非,机人,非非,其他 */
129
149
  "sgxt2"?: string;
150
+ /**
151
+ * 受伤人数
152
+ * @format int32
153
+ */
154
+ ssrs?: number;
130
155
  /** 事故状态 */
131
156
  state?: string;
132
157
  /**
@@ -134,8 +159,16 @@ export declare class AccidentDTOReq {
134
159
  * @format int64
135
160
  */
136
161
  time?: number;
162
+ /** 调节方式 */
163
+ tjfs?: string;
164
+ /** 调解人 */
165
+ tjr?: string;
137
166
  /** 辖区 */
138
167
  townCode?: string;
168
+ /** 移交处理详情 */
169
+ transferUserHandleList?: AccidentTransferUserHandleDTOReq[];
170
+ /** 推送六合一情况 */
171
+ trffPushState?: AccidentPushStateReq;
139
172
  /** 事故类型 */
140
173
  type?: string;
141
174
  /** 当事人列表 */
@@ -147,10 +180,19 @@ export declare class AccidentDTOReq {
147
180
  videoRecord?: boolean;
148
181
  /** 天气 */
149
182
  weather?: string;
183
+ /** 现场 */
184
+ xc?: string;
150
185
  /** 协警 */
151
186
  xj?: string;
152
187
  /** 协警姓名 */
153
188
  xjName?: string;
189
+ /**
190
+ * 直接财产损失
191
+ * @format double
192
+ */
193
+ zjccss?: number;
194
+ /** 责任调解结果 */
195
+ zrtjjg?: string;
154
196
  }
155
197
  export declare class AccidentDTORes {
156
198
  /** 作废原因 */
@@ -175,6 +217,10 @@ export declare class AccidentDTORes {
175
217
  createTime: number;
176
218
  /** 创建人用户名 */
177
219
  createUser: string;
220
+ /** 档案号 */
221
+ dah: string;
222
+ /** 地点米数 */
223
+ ddms: string;
178
224
  /**
179
225
  * 是否已删除
180
226
  * @example false
@@ -188,6 +234,8 @@ export declare class AccidentDTORes {
188
234
  departmentShortname: string;
189
235
  /** 数据签名 */
190
236
  digest: EntityDigest;
237
+ /** 道路代码 */
238
+ dldm: string;
191
239
  /**
192
240
  * 修改时间
193
241
  * @format int64
@@ -205,10 +253,20 @@ export declare class AccidentDTORes {
205
253
  * @format int64
206
254
  */
207
255
  id: number;
256
+ /** 结案方式 */
257
+ jafs: string;
258
+ /** 结案人1 */
259
+ "jar1": string;
260
+ /** 结案人2 */
261
+ "jar2": string;
262
+ /** 经办人 */
263
+ jbr: string;
208
264
  /** 打标列表 */
209
265
  labelList: AccidentLabelDTO[];
210
266
  /** 经纬度 */
211
267
  latlng: PointRes;
268
+ /** 路段代码 */
269
+ lddm: string;
212
270
  modifyForSgbh: string;
213
271
  /** 事故来源 */
214
272
  origin: string;
@@ -271,6 +329,8 @@ export declare class AccidentDTORes {
271
329
  reportZjhm: string;
272
330
  /** 事故编号 */
273
331
  sgbh: string;
332
+ /** 事故地点 */
333
+ sgdd: string;
274
334
  /** 事故结案备注 */
275
335
  sgjabz: string;
276
336
  /** 事故结案渠道 */
@@ -279,10 +339,17 @@ export declare class AccidentDTORes {
279
339
  sgms: string;
280
340
  /** 事故情形 */
281
341
  sgqx: string;
342
+ /** 事故认定原因 */
343
+ sgrdyy: string;
282
344
  /** 事故形态 */
283
345
  sgxt: string;
284
346
  /** 事故形态2, 机机,机非,机人,非非,其他 */
285
347
  "sgxt2": string;
348
+ /**
349
+ * 受伤人数
350
+ * @format int32
351
+ */
352
+ ssrs: number;
286
353
  /** 事故状态 */
287
354
  state: string;
288
355
  /**
@@ -290,8 +357,16 @@ export declare class AccidentDTORes {
290
357
  * @format int64
291
358
  */
292
359
  time: number;
360
+ /** 调节方式 */
361
+ tjfs: string;
362
+ /** 调解人 */
363
+ tjr: string;
293
364
  /** 辖区 */
294
365
  townCode: string;
366
+ /** 移交处理详情 */
367
+ transferUserHandleList: AccidentTransferUserHandleDTORes[];
368
+ /** 推送六合一情况 */
369
+ trffPushState: AccidentPushStateRes;
295
370
  /** 事故类型 */
296
371
  type: string;
297
372
  /** 业务修改记录。提取证据列表中type为update-record的内容 */
@@ -305,10 +380,19 @@ export declare class AccidentDTORes {
305
380
  videoRecord: boolean;
306
381
  /** 天气 */
307
382
  weather: string;
383
+ /** 现场 */
384
+ xc: string;
308
385
  /** 协警 */
309
386
  xj: string;
310
387
  /** 协警姓名 */
311
388
  xjName: string;
389
+ /**
390
+ * 直接财产损失
391
+ * @format double
392
+ */
393
+ zjccss: number;
394
+ /** 责任调解结果 */
395
+ zrtjjg: string;
312
396
  }
313
397
  export declare class AccidentInsuranceDTO {
314
398
  address: string;
@@ -441,6 +525,45 @@ export declare class AccidentLabelRequest {
441
525
  /** 标签值 */
442
526
  labelValue?: string;
443
527
  }
528
+ export declare class AccidentPushResponse {
529
+ extraMessage: string;
530
+ pushResponseCode: string;
531
+ pushResponseMessage: string;
532
+ /** @format int32 */
533
+ retryTimes: number;
534
+ success: boolean;
535
+ trffSgbh: string;
536
+ }
537
+ export declare class AccidentPushStateReq {
538
+ /** 提交返回状态码 */
539
+ pushCode?: string;
540
+ /** 错误信息 */
541
+ pushMessage?: string;
542
+ /** 提交状态 */
543
+ pushState?: "Cancel" | "Done" | "Error" | "Suspend" | "Wait";
544
+ /**
545
+ * 时间
546
+ * @format int64
547
+ */
548
+ time?: number;
549
+ /** 六合一事故编号 */
550
+ trffSgbh?: string;
551
+ }
552
+ export declare class AccidentPushStateRes {
553
+ /** 提交返回状态码 */
554
+ pushCode: string;
555
+ /** 错误信息 */
556
+ pushMessage: string;
557
+ /** 提交状态 */
558
+ pushState: "Cancel" | "Done" | "Error" | "Suspend" | "Wait";
559
+ /**
560
+ * 时间
561
+ * @format int64
562
+ */
563
+ time: number;
564
+ /** 六合一事故编号 */
565
+ trffSgbh: string;
566
+ }
444
567
  export declare class AccidentQueryBean {
445
568
  /** 事故地址查询。支持模糊查询 */
446
569
  address?: string;
@@ -544,6 +667,14 @@ export declare class AccidentQueryBean {
544
667
  timeEnd?: number;
545
668
  /** 辖区 */
546
669
  townCode?: string;
670
+ /** 事故移交受理部门 */
671
+ transferHandleDepartmentIn?: string[];
672
+ /** 事故移交用户 */
673
+ transferHandleFromUser?: string;
674
+ /** 事故移交受理状态 */
675
+ transferHandleState?: "Active" | "Handled" | "Transfer";
676
+ /** 事故移交受理用户 */
677
+ transferHandleUser?: string;
547
678
  /** 事故类型(In查询) */
548
679
  typeIn?: string[];
549
680
  /** 辅警用户 */
@@ -632,6 +763,8 @@ export declare class AccidentSimpleDTO {
632
763
  time: number;
633
764
  /** 辖区 */
634
765
  townCode: string;
766
+ /** 推送六合一情况 */
767
+ trffPushState: AccidentPushStateRes;
635
768
  /** 事故类型 */
636
769
  type: string;
637
770
  /** 当事人列表 */
@@ -652,6 +785,50 @@ export declare class AccidentSimpleForHeatMap {
652
785
  latlng: LatlngPoint;
653
786
  sgbh: string;
654
787
  }
788
+ export declare class AccidentTransferReq {
789
+ /** 移交原因 */
790
+ reason?: string;
791
+ /** 移交到目标用户 */
792
+ targetUser?: string;
793
+ }
794
+ export declare class AccidentTransferUserHandleDTOReq {
795
+ /** 移交受理部门 */
796
+ department?: string;
797
+ /** 移交发起人 */
798
+ fromUser?: string;
799
+ /** 移交原因 */
800
+ reason?: string;
801
+ /** 事故编号 */
802
+ sgbh?: string;
803
+ /** 状态 */
804
+ state?: "Active" | "Handled" | "Transfer";
805
+ /**
806
+ * 移交发起时间
807
+ * @format int64
808
+ */
809
+ time?: number;
810
+ /** 移交受理人 */
811
+ user?: string;
812
+ }
813
+ export declare class AccidentTransferUserHandleDTORes {
814
+ /** 移交受理部门 */
815
+ department: string;
816
+ /** 移交发起人 */
817
+ fromUser: string;
818
+ /** 移交原因 */
819
+ reason: string;
820
+ /** 事故编号 */
821
+ sgbh: string;
822
+ /** 状态 */
823
+ state: "Active" | "Handled" | "Transfer";
824
+ /**
825
+ * 移交发起时间
826
+ * @format int64
827
+ */
828
+ time: number;
829
+ /** 移交受理人 */
830
+ user: string;
831
+ }
655
832
  export declare class AccidentUser {
656
833
  /**
657
834
  * 事故记录ID
@@ -660,22 +837,58 @@ export declare class AccidentUser {
660
837
  accidentId: number;
661
838
  /** 保险公司 */
662
839
  bxgs: string;
840
+ /**
841
+ * 初次领证日期
842
+ * @format int64
843
+ */
844
+ cclzrq: number;
663
845
  /** 车架号 */
664
846
  cjh: string;
847
+ /** 车辆发证机关 */
848
+ clfzjg: string;
849
+ /** 车辆管辖地 */
850
+ clgxd: string;
665
851
  /** 车辆类型 */
666
852
  cllx: string;
853
+ /** 车辆品牌 */
854
+ clpp: string;
855
+ /** 车辆型号 */
856
+ clxh: string;
857
+ /** 车辆颜色 */
858
+ clys: string;
859
+ /** 车辆装载物品 */
860
+ clzzwp: string;
667
861
  /** 档案编号 */
668
862
  dabh: string;
863
+ /** 发动机号 */
864
+ fdjh: string;
669
865
  /** 发证机关 */
670
866
  fzjg: string;
867
+ /** 管理行政区划 */
868
+ glxzqh: string;
671
869
  /** 号牌号码 */
672
870
  hphm: string;
673
871
  /** 号牌种类 */
674
872
  hpzl: string;
675
873
  /** @format int64 */
676
874
  id: number;
875
+ /** 机动车所有人 */
876
+ jdcsyr: string;
877
+ /** 机动车序号 */
878
+ jdcxh: string;
879
+ /** 机动车状态 */
880
+ jdczt: string;
881
+ /**
882
+ * 驾龄
883
+ * @format int32
884
+ */
885
+ jl: number;
677
886
  /** 交强险编号 */
678
887
  jqxh: string;
888
+ /** 驾驶人管辖地 */
889
+ jsrgxd: string;
890
+ /** 驾驶证种类 */
891
+ jszzl: string;
679
892
  /** 交通方式 */
680
893
  jtfs: string;
681
894
  /** 居住地 */
@@ -700,6 +913,13 @@ export declare class AccidentUser {
700
913
  pictureXsz: string;
701
914
  /** 备注 */
702
915
  remark: string;
916
+ /** 人员类型 */
917
+ rylx: string;
918
+ /**
919
+ * 是否保险
920
+ * @example false
921
+ */
922
+ sfbx: boolean;
703
923
  /**
704
924
  * 是否出险
705
925
  * @example false
@@ -709,6 +929,8 @@ export declare class AccidentUser {
709
929
  sgqx: string;
710
930
  /** 事故责任 */
711
931
  sgzr: string;
932
+ /** 伤害程度 */
933
+ shcd: string;
712
934
  /**
713
935
  * 签字时间
714
936
  * @format int64
@@ -716,6 +938,10 @@ export declare class AccidentUser {
716
938
  signTime: number;
717
939
  /** 受损部位 */
718
940
  ssbw: string;
941
+ /** 所有权 */
942
+ syq: string;
943
+ /** 使用性质 */
944
+ syxz: string;
719
945
  /** 违法行为 */
720
946
  wfxws: string[];
721
947
  /** 行驶方向 */
@@ -724,6 +950,10 @@ export declare class AccidentUser {
724
950
  zjcx: string;
725
951
  /** 证件号码 */
726
952
  zjhm: string;
953
+ /** 专业运输单位 */
954
+ zyysdw: string;
955
+ /** 住址 */
956
+ zz: string;
727
957
  }
728
958
  export declare class AccidentUserInsuranceDTOReq {
729
959
  /** 关联事故信息 */
@@ -1296,6 +1526,14 @@ export declare class DiscardAccidentQueryBean {
1296
1526
  timeEnd?: number;
1297
1527
  /** 辖区 */
1298
1528
  townCode?: string;
1529
+ /** 事故移交受理部门 */
1530
+ transferHandleDepartmentIn?: string[];
1531
+ /** 事故移交用户 */
1532
+ transferHandleFromUser?: string;
1533
+ /** 事故移交受理状态 */
1534
+ transferHandleState?: "Active" | "Handled" | "Transfer";
1535
+ /** 事故移交受理用户 */
1536
+ transferHandleUser?: string;
1299
1537
  /** 事故类型(In查询) */
1300
1538
  typeIn?: string[];
1301
1539
  /** 协警用户 */
@@ -2197,6 +2435,14 @@ export declare class AccidentParams {
2197
2435
  timeEnd?: number;
2198
2436
  /** 辖区 */
2199
2437
  townCode?: string;
2438
+ /** 事故移交受理部门 */
2439
+ transferHandleDepartmentIn?: string[];
2440
+ /** 事故移交用户 */
2441
+ transferHandleFromUser?: string;
2442
+ /** 事故移交受理状态 */
2443
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2444
+ /** 事故移交受理用户 */
2445
+ transferHandleUser?: string;
2200
2446
  /** 事故类型(In查询) */
2201
2447
  typeIn?: string[];
2202
2448
  /** 辅警用户 */
@@ -2204,6 +2450,12 @@ export declare class AccidentParams {
2204
2450
  /** [当事人]证件号码 */
2205
2451
  zjhm?: string;
2206
2452
  }
2453
+ export declare class FindBySgbhPushToTrffBySgbhParams {
2454
+ /** 是否将自有事故编号写入六合一 */
2455
+ writeSgbh?: boolean;
2456
+ /** sgbh */
2457
+ sgbh: string;
2458
+ }
2207
2459
  export declare class ForDiscardParams {
2208
2460
  /** 事故地址查询。支持模糊查询 */
2209
2461
  address?: string;
@@ -2283,6 +2535,14 @@ export declare class ForDiscardParams {
2283
2535
  timeEnd?: number;
2284
2536
  /** 辖区 */
2285
2537
  townCode?: string;
2538
+ /** 事故移交受理部门 */
2539
+ transferHandleDepartmentIn?: string[];
2540
+ /** 事故移交用户 */
2541
+ transferHandleFromUser?: string;
2542
+ /** 事故移交受理状态 */
2543
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2544
+ /** 事故移交受理用户 */
2545
+ transferHandleUser?: string;
2286
2546
  /** 事故类型(In查询) */
2287
2547
  typeIn?: string[];
2288
2548
  /** 协警用户 */
@@ -2381,6 +2641,14 @@ export declare class ForInsuranceUserParams {
2381
2641
  timeEnd?: number;
2382
2642
  /** 辖区 */
2383
2643
  townCode?: string;
2644
+ /** 事故移交受理部门 */
2645
+ transferHandleDepartmentIn?: string[];
2646
+ /** 事故移交用户 */
2647
+ transferHandleFromUser?: string;
2648
+ /** 事故移交受理状态 */
2649
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2650
+ /** 事故移交受理用户 */
2651
+ transferHandleUser?: string;
2384
2652
  /** 事故类型(In查询) */
2385
2653
  typeIn?: string[];
2386
2654
  /** 辅警用户 */
@@ -2479,6 +2747,14 @@ export declare class HeatmapParams {
2479
2747
  timeEnd?: number;
2480
2748
  /** 辖区 */
2481
2749
  townCode?: string;
2750
+ /** 事故移交受理部门 */
2751
+ transferHandleDepartmentIn?: string[];
2752
+ /** 事故移交用户 */
2753
+ transferHandleFromUser?: string;
2754
+ /** 事故移交受理状态 */
2755
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2756
+ /** 事故移交受理用户 */
2757
+ transferHandleUser?: string;
2482
2758
  /** 事故类型(In查询) */
2483
2759
  typeIn?: string[];
2484
2760
  /** 辅警用户 */
@@ -2581,6 +2857,14 @@ export declare class SimpleParams {
2581
2857
  timeEnd?: number;
2582
2858
  /** 辖区 */
2583
2859
  townCode?: string;
2860
+ /** 事故移交受理部门 */
2861
+ transferHandleDepartmentIn?: string[];
2862
+ /** 事故移交用户 */
2863
+ transferHandleFromUser?: string;
2864
+ /** 事故移交受理状态 */
2865
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2866
+ /** 事故移交受理用户 */
2867
+ transferHandleUser?: string;
2584
2868
  /** 事故类型(In查询) */
2585
2869
  typeIn?: string[];
2586
2870
  /** 辅警用户 */
@@ -2667,6 +2951,14 @@ export declare class SimpleForDiscardParams {
2667
2951
  timeEnd?: number;
2668
2952
  /** 辖区 */
2669
2953
  townCode?: string;
2954
+ /** 事故移交受理部门 */
2955
+ transferHandleDepartmentIn?: string[];
2956
+ /** 事故移交用户 */
2957
+ transferHandleFromUser?: string;
2958
+ /** 事故移交受理状态 */
2959
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2960
+ /** 事故移交受理用户 */
2961
+ transferHandleUser?: string;
2670
2962
  /** 事故类型(In查询) */
2671
2963
  typeIn?: string[];
2672
2964
  /** 协警用户 */
@@ -2888,7 +3180,7 @@ declare class Api {
2888
3180
  constructor(http: HttpClient);
2889
3181
  accident: {
2890
3182
  /**
2891
- * @description 所需权限:accident:history:list
3183
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2892
3184
  *
2893
3185
  * @tags accident
2894
3186
  * @name Accident
@@ -2901,7 +3193,7 @@ declare class Api {
2901
3193
  */
2902
3194
  accident: (query: AccidentParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
2903
3195
  /**
2904
- * @description 所需权限:accident:history:list
3196
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2905
3197
  *
2906
3198
  * @tags accident
2907
3199
  * @name FindBySgbhBySgbh
@@ -2928,7 +3220,7 @@ declare class Api {
2928
3220
  */
2929
3221
  findBySgbhDeleteBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2930
3222
  /**
2931
- * @description 所需权限:accident:history:list
3223
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2932
3224
  *
2933
3225
  * @tags accident
2934
3226
  * @name FindBySgbhInsuranceClaimBySgbh
@@ -2940,6 +3232,34 @@ declare class Api {
2940
3232
  * @response `404` `void` Not Found
2941
3233
  */
2942
3234
  findBySgbhInsuranceClaimBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<AccidentUserInsuranceDetail[]>;
3235
+ /**
3236
+ * @description 所需权限:accident:handle、accident:police:handle (OR)
3237
+ *
3238
+ * @tags accident
3239
+ * @name FindBySgbhPushToTrffBySgbh
3240
+ * @summary 按事故编号将事故推送到六合一
3241
+ * @request POST:/accident-service/accident/find-by-sgbh/{sgbh}/push-to-trff
3242
+ * @response `200` `AccidentPushResponse` OK
3243
+ * @response `201` `void` Created
3244
+ * @response `401` `void` Unauthorized
3245
+ * @response `403` `void` Forbidden
3246
+ * @response `404` `void` Not Found
3247
+ */
3248
+ findBySgbhPushToTrffBySgbh: ({ sgbh, ...query }: FindBySgbhPushToTrffBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<AccidentPushResponse>;
3249
+ /**
3250
+ * @description 所需权限:accident:handle、accident:police:handle (OR)
3251
+ *
3252
+ * @tags accident
3253
+ * @name FindBySgbhPushToZlkcBySgbh
3254
+ * @summary 按事故编号将事故推送到浙里快处省归集库
3255
+ * @request POST:/accident-service/accident/find-by-sgbh/{sgbh}/push-to-zlkc
3256
+ * @response `200` `void` OK
3257
+ * @response `201` `void` Created
3258
+ * @response `401` `void` Unauthorized
3259
+ * @response `403` `void` Forbidden
3260
+ * @response `404` `void` Not Found
3261
+ */
3262
+ findBySgbhPushToZlkcBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2943
3263
  /**
2944
3264
  * @description 所需权限:accident:handle、accident:police:handle (OR)
2945
3265
  *
@@ -2955,7 +3275,7 @@ declare class Api {
2955
3275
  */
2956
3276
  findBySgbhRecoverBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2957
3277
  /**
2958
- * @description 所需权限:accident:history:list
3278
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2959
3279
  *
2960
3280
  * @tags accident
2961
3281
  * @name ForDiscard
@@ -2968,7 +3288,7 @@ declare class Api {
2968
3288
  */
2969
3289
  forDiscard: (query: ForDiscardParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
2970
3290
  /**
2971
- * @description 所需权限:accident:history:list
3291
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2972
3292
  *
2973
3293
  * @tags accident
2974
3294
  * @name ForDiscardList
@@ -2982,7 +3302,7 @@ declare class Api {
2982
3302
  */
2983
3303
  forDiscardList: (data: DiscardAccidentQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
2984
3304
  /**
2985
- * @description 所需权限:accident:history:list
3305
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2986
3306
  *
2987
3307
  * @tags accident
2988
3308
  * @name ForDiscardById
@@ -3036,7 +3356,7 @@ declare class Api {
3036
3356
  */
3037
3357
  generateSgmsByNodeVueRender: (data: AccidentSgmsGenerateRequest, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3038
3358
  /**
3039
- * @description 所需权限:accident:history:list
3359
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3040
3360
  *
3041
3361
  * @tags accident
3042
3362
  * @name Heatmap
@@ -3049,7 +3369,7 @@ declare class Api {
3049
3369
  */
3050
3370
  heatmap: (query: HeatmapParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleForHeatMap>;
3051
3371
  /**
3052
- * @description 所需权限:accident:history:list
3372
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3053
3373
  *
3054
3374
  * @tags accident
3055
3375
  * @name List
@@ -3090,7 +3410,7 @@ declare class Api {
3090
3410
  */
3091
3411
  reportHtml: (data: RenderProcessDataRequest, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3092
3412
  /**
3093
- * @description 所需权限:accident:history:list
3413
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3094
3414
  *
3095
3415
  * @tags accident
3096
3416
  * @name Simple
@@ -3103,7 +3423,7 @@ declare class Api {
3103
3423
  */
3104
3424
  simple: (query: SimpleParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleDTO>;
3105
3425
  /**
3106
- * @description 所需权限:accident:history:list
3426
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3107
3427
  *
3108
3428
  * @tags accident
3109
3429
  * @name SimpleForDiscard
@@ -3142,7 +3462,7 @@ declare class Api {
3142
3462
  */
3143
3463
  userInsurance: (query: UserInsuranceParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentUserInsuranceDTO>;
3144
3464
  /**
3145
- * @description 所需权限:accident:history:list
3465
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3146
3466
  *
3147
3467
  * @tags accident
3148
3468
  * @name ById
@@ -3169,7 +3489,7 @@ declare class Api {
3169
3489
  */
3170
3490
  insuraneBySgbhAndZjhm: (sgbh: string, zjhm: string, data: AccidentUserInsuranceDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3171
3491
  /**
3172
- * @description 所需权限:accident:history:list
3492
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3173
3493
  *
3174
3494
  * @tags accident
3175
3495
  * @name ReportDownloadBySgbh
@@ -3182,7 +3502,7 @@ declare class Api {
3182
3502
  */
3183
3503
  reportDownloadBySgbh: ({ sgbh, ...query }: ReportDownloadBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<Resource>;
3184
3504
  /**
3185
- * @description 所需权限:accident:modify<br>所需权限:accident:history:list
3505
+ * @description 所需权限:accident:modify<br>所需权限:accident:handle、accident:police:handle (OR)
3186
3506
  *
3187
3507
  * @tags accident
3188
3508
  * @name ReportGenerateBySgbh
@@ -3195,7 +3515,7 @@ declare class Api {
3195
3515
  */
3196
3516
  reportGenerateBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3197
3517
  /**
3198
- * @description 所需权限:accident:history:list
3518
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3199
3519
  *
3200
3520
  * @tags accident
3201
3521
  * @name ReportPreviewBySgbh
@@ -3207,6 +3527,34 @@ declare class Api {
3207
3527
  * @response `404` `void` Not Found
3208
3528
  */
3209
3529
  reportPreviewBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3530
+ /**
3531
+ * @description 所需权限:accident:handle
3532
+ *
3533
+ * @tags accident
3534
+ * @name TransferBySgbh
3535
+ * @summary 事故移交
3536
+ * @request POST:/accident-service/accident/{sgbh}/transfer
3537
+ * @response `200` `void` OK
3538
+ * @response `201` `void` Created
3539
+ * @response `401` `void` Unauthorized
3540
+ * @response `403` `void` Forbidden
3541
+ * @response `404` `void` Not Found
3542
+ */
3543
+ transferBySgbh: (sgbh: string, data: AccidentTransferReq, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3544
+ /**
3545
+ * @description 所需权限:accident:handle
3546
+ *
3547
+ * @tags accident
3548
+ * @name TransferHandledBySgbh
3549
+ * @summary 事故移交受理
3550
+ * @request POST:/accident-service/accident/{sgbh}/transfer/handled
3551
+ * @response `200` `void` OK
3552
+ * @response `201` `void` Created
3553
+ * @response `401` `void` Unauthorized
3554
+ * @response `403` `void` Forbidden
3555
+ * @response `404` `void` Not Found
3556
+ */
3557
+ transferHandledBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3210
3558
  /**
3211
3559
  * @description 所需权限:accident:handle、accident:police:handle (OR)
3212
3560
  *