szpt-driver-api 1.0.22 → 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
  /** 协警用户 */
@@ -1308,6 +1546,8 @@ export declare class EntityDigest {
1308
1546
  valid: boolean;
1309
1547
  }
1310
1548
  export declare class Evidence {
1549
+ /** 证据类型 */
1550
+ category: string;
1311
1551
  /** 内容 */
1312
1552
  content: string;
1313
1553
  /** 描述 */
@@ -1326,7 +1566,7 @@ export declare class Evidence {
1326
1566
  * @format int64
1327
1567
  */
1328
1568
  time: number;
1329
- /** 类型 */
1569
+ /** 证据文件类型 */
1330
1570
  type: string;
1331
1571
  /** 上传人 */
1332
1572
  user: string;
@@ -1496,6 +1736,12 @@ export declare class LatlngPoint {
1496
1736
  /** @format double */
1497
1737
  longitude: number;
1498
1738
  }
1739
+ export declare class ListEvidenceRequest {
1740
+ /** 文书编号 */
1741
+ code?: string;
1742
+ /** 文书类型 */
1743
+ codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1744
+ }
1499
1745
  export declare class ModelAndView {
1500
1746
  empty: boolean;
1501
1747
  model: any;
@@ -1644,6 +1890,11 @@ export declare class RenderProcessDataRequest {
1644
1890
  * 报告
1645
1891
  */
1646
1892
  export declare class Report {
1893
+ /**
1894
+ * id
1895
+ * @format int64
1896
+ */
1897
+ id: number;
1647
1898
  /** 备注 */
1648
1899
  remark: string;
1649
1900
  /** 资源id */
@@ -2184,6 +2435,14 @@ export declare class AccidentParams {
2184
2435
  timeEnd?: number;
2185
2436
  /** 辖区 */
2186
2437
  townCode?: string;
2438
+ /** 事故移交受理部门 */
2439
+ transferHandleDepartmentIn?: string[];
2440
+ /** 事故移交用户 */
2441
+ transferHandleFromUser?: string;
2442
+ /** 事故移交受理状态 */
2443
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2444
+ /** 事故移交受理用户 */
2445
+ transferHandleUser?: string;
2187
2446
  /** 事故类型(In查询) */
2188
2447
  typeIn?: string[];
2189
2448
  /** 辅警用户 */
@@ -2191,6 +2450,12 @@ export declare class AccidentParams {
2191
2450
  /** [当事人]证件号码 */
2192
2451
  zjhm?: string;
2193
2452
  }
2453
+ export declare class FindBySgbhPushToTrffBySgbhParams {
2454
+ /** 是否将自有事故编号写入六合一 */
2455
+ writeSgbh?: boolean;
2456
+ /** sgbh */
2457
+ sgbh: string;
2458
+ }
2194
2459
  export declare class ForDiscardParams {
2195
2460
  /** 事故地址查询。支持模糊查询 */
2196
2461
  address?: string;
@@ -2270,6 +2535,14 @@ export declare class ForDiscardParams {
2270
2535
  timeEnd?: number;
2271
2536
  /** 辖区 */
2272
2537
  townCode?: string;
2538
+ /** 事故移交受理部门 */
2539
+ transferHandleDepartmentIn?: string[];
2540
+ /** 事故移交用户 */
2541
+ transferHandleFromUser?: string;
2542
+ /** 事故移交受理状态 */
2543
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2544
+ /** 事故移交受理用户 */
2545
+ transferHandleUser?: string;
2273
2546
  /** 事故类型(In查询) */
2274
2547
  typeIn?: string[];
2275
2548
  /** 协警用户 */
@@ -2368,6 +2641,14 @@ export declare class ForInsuranceUserParams {
2368
2641
  timeEnd?: number;
2369
2642
  /** 辖区 */
2370
2643
  townCode?: string;
2644
+ /** 事故移交受理部门 */
2645
+ transferHandleDepartmentIn?: string[];
2646
+ /** 事故移交用户 */
2647
+ transferHandleFromUser?: string;
2648
+ /** 事故移交受理状态 */
2649
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2650
+ /** 事故移交受理用户 */
2651
+ transferHandleUser?: string;
2371
2652
  /** 事故类型(In查询) */
2372
2653
  typeIn?: string[];
2373
2654
  /** 辅警用户 */
@@ -2466,6 +2747,14 @@ export declare class HeatmapParams {
2466
2747
  timeEnd?: number;
2467
2748
  /** 辖区 */
2468
2749
  townCode?: string;
2750
+ /** 事故移交受理部门 */
2751
+ transferHandleDepartmentIn?: string[];
2752
+ /** 事故移交用户 */
2753
+ transferHandleFromUser?: string;
2754
+ /** 事故移交受理状态 */
2755
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2756
+ /** 事故移交受理用户 */
2757
+ transferHandleUser?: string;
2469
2758
  /** 事故类型(In查询) */
2470
2759
  typeIn?: string[];
2471
2760
  /** 辅警用户 */
@@ -2568,6 +2857,14 @@ export declare class SimpleParams {
2568
2857
  timeEnd?: number;
2569
2858
  /** 辖区 */
2570
2859
  townCode?: string;
2860
+ /** 事故移交受理部门 */
2861
+ transferHandleDepartmentIn?: string[];
2862
+ /** 事故移交用户 */
2863
+ transferHandleFromUser?: string;
2864
+ /** 事故移交受理状态 */
2865
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2866
+ /** 事故移交受理用户 */
2867
+ transferHandleUser?: string;
2571
2868
  /** 事故类型(In查询) */
2572
2869
  typeIn?: string[];
2573
2870
  /** 辅警用户 */
@@ -2654,6 +2951,14 @@ export declare class SimpleForDiscardParams {
2654
2951
  timeEnd?: number;
2655
2952
  /** 辖区 */
2656
2953
  townCode?: string;
2954
+ /** 事故移交受理部门 */
2955
+ transferHandleDepartmentIn?: string[];
2956
+ /** 事故移交用户 */
2957
+ transferHandleFromUser?: string;
2958
+ /** 事故移交受理状态 */
2959
+ transferHandleState?: "Active" | "Handled" | "Transfer";
2960
+ /** 事故移交受理用户 */
2961
+ transferHandleUser?: string;
2657
2962
  /** 事故类型(In查询) */
2658
2963
  typeIn?: string[];
2659
2964
  /** 协警用户 */
@@ -2875,7 +3180,7 @@ declare class Api {
2875
3180
  constructor(http: HttpClient);
2876
3181
  accident: {
2877
3182
  /**
2878
- * @description 所需权限:accident:history:list
3183
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2879
3184
  *
2880
3185
  * @tags accident
2881
3186
  * @name Accident
@@ -2888,7 +3193,7 @@ declare class Api {
2888
3193
  */
2889
3194
  accident: (query: AccidentParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
2890
3195
  /**
2891
- * No description
3196
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2892
3197
  *
2893
3198
  * @tags accident
2894
3199
  * @name FindBySgbhBySgbh
@@ -2915,7 +3220,7 @@ declare class Api {
2915
3220
  */
2916
3221
  findBySgbhDeleteBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2917
3222
  /**
2918
- * @description 所需权限:accident:history:list
3223
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2919
3224
  *
2920
3225
  * @tags accident
2921
3226
  * @name FindBySgbhInsuranceClaimBySgbh
@@ -2927,6 +3232,34 @@ declare class Api {
2927
3232
  * @response `404` `void` Not Found
2928
3233
  */
2929
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>;
2930
3263
  /**
2931
3264
  * @description 所需权限:accident:handle、accident:police:handle (OR)
2932
3265
  *
@@ -2942,7 +3275,7 @@ declare class Api {
2942
3275
  */
2943
3276
  findBySgbhRecoverBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2944
3277
  /**
2945
- * @description 所需权限:accident:history:list
3278
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2946
3279
  *
2947
3280
  * @tags accident
2948
3281
  * @name ForDiscard
@@ -2955,7 +3288,7 @@ declare class Api {
2955
3288
  */
2956
3289
  forDiscard: (query: ForDiscardParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
2957
3290
  /**
2958
- * @description 所需权限:accident:history:list
3291
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2959
3292
  *
2960
3293
  * @tags accident
2961
3294
  * @name ForDiscardList
@@ -2969,7 +3302,7 @@ declare class Api {
2969
3302
  */
2970
3303
  forDiscardList: (data: DiscardAccidentQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentDTO>;
2971
3304
  /**
2972
- * @description 所需权限:accident:history:list
3305
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
2973
3306
  *
2974
3307
  * @tags accident
2975
3308
  * @name ForDiscardById
@@ -3023,7 +3356,7 @@ declare class Api {
3023
3356
  */
3024
3357
  generateSgmsByNodeVueRender: (data: AccidentSgmsGenerateRequest, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3025
3358
  /**
3026
- * @description 所需权限:accident:history:list
3359
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3027
3360
  *
3028
3361
  * @tags accident
3029
3362
  * @name Heatmap
@@ -3036,7 +3369,7 @@ declare class Api {
3036
3369
  */
3037
3370
  heatmap: (query: HeatmapParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleForHeatMap>;
3038
3371
  /**
3039
- * @description 所需权限:accident:history:list
3372
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3040
3373
  *
3041
3374
  * @tags accident
3042
3375
  * @name List
@@ -3077,7 +3410,7 @@ declare class Api {
3077
3410
  */
3078
3411
  reportHtml: (data: RenderProcessDataRequest, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3079
3412
  /**
3080
- * @description 所需权限:accident:history:list
3413
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3081
3414
  *
3082
3415
  * @tags accident
3083
3416
  * @name Simple
@@ -3090,7 +3423,7 @@ declare class Api {
3090
3423
  */
3091
3424
  simple: (query: SimpleParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentSimpleDTO>;
3092
3425
  /**
3093
- * @description 所需权限:accident:history:list
3426
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3094
3427
  *
3095
3428
  * @tags accident
3096
3429
  * @name SimpleForDiscard
@@ -3129,7 +3462,7 @@ declare class Api {
3129
3462
  */
3130
3463
  userInsurance: (query: UserInsuranceParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultAccidentUserInsuranceDTO>;
3131
3464
  /**
3132
- * No description
3465
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3133
3466
  *
3134
3467
  * @tags accident
3135
3468
  * @name ById
@@ -3156,7 +3489,7 @@ declare class Api {
3156
3489
  */
3157
3490
  insuraneBySgbhAndZjhm: (sgbh: string, zjhm: string, data: AccidentUserInsuranceDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3158
3491
  /**
3159
- * No description
3492
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3160
3493
  *
3161
3494
  * @tags accident
3162
3495
  * @name ReportDownloadBySgbh
@@ -3169,7 +3502,7 @@ declare class Api {
3169
3502
  */
3170
3503
  reportDownloadBySgbh: ({ sgbh, ...query }: ReportDownloadBySgbhParams, axiosConfig?: AxiosRequestConfig) => Promise<Resource>;
3171
3504
  /**
3172
- * @description 所需权限:accident:modify
3505
+ * @description 所需权限:accident:modify<br>所需权限:accident:handle、accident:police:handle (OR)
3173
3506
  *
3174
3507
  * @tags accident
3175
3508
  * @name ReportGenerateBySgbh
@@ -3182,7 +3515,7 @@ declare class Api {
3182
3515
  */
3183
3516
  reportGenerateBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3184
3517
  /**
3185
- * No description
3518
+ * @description 所需权限:accident:history:list、accident:personal:history:list (OR)
3186
3519
  *
3187
3520
  * @tags accident
3188
3521
  * @name ReportPreviewBySgbh
@@ -3194,6 +3527,34 @@ declare class Api {
3194
3527
  * @response `404` `void` Not Found
3195
3528
  */
3196
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>;
3197
3558
  /**
3198
3559
  * @description 所需权限:accident:handle、accident:police:handle (OR)
3199
3560
  *
@@ -3646,7 +4007,7 @@ declare class Api {
3646
4007
  */
3647
4008
  postEvidence: (data: SaveEvidenceRequest, axiosConfig?: AxiosRequestConfig) => Promise<number[]>;
3648
4009
  /**
3649
- * @description 仅允许修改 description/evidenceKey/evidenceType 字段
4010
+ * No description
3650
4011
  *
3651
4012
  * @tags evidence
3652
4013
  * @name GetById
@@ -3659,7 +4020,7 @@ declare class Api {
3659
4020
  */
3660
4021
  getById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<Evidence>;
3661
4022
  /**
3662
- * @description 仅允许修改 description/evidenceKey/evidenceType/user
4023
+ * No description
3663
4024
  *
3664
4025
  * @tags evidence
3665
4026
  * @name PutById
@@ -3753,6 +4114,48 @@ declare class Api {
3753
4114
  * @response `403` `void` Forbidden
3754
4115
  */
3755
4116
  deleteRemindById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4117
+ /**
4118
+ * No description
4119
+ *
4120
+ * @tags evidence
4121
+ * @name SyncTransfer
4122
+ * @summary 按业务同步证据信息
4123
+ * @request POST:/accident-service/evidence/sync/transfer
4124
+ * @response `200` `void` OK
4125
+ * @response `201` `void` Created
4126
+ * @response `401` `void` Unauthorized
4127
+ * @response `403` `void` Forbidden
4128
+ * @response `404` `void` Not Found
4129
+ */
4130
+ syncTransfer: (data: ListEvidenceRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4131
+ /**
4132
+ * No description
4133
+ *
4134
+ * @tags evidence
4135
+ * @name SyncTransferResourceByResourceId
4136
+ * @summary 同步资源
4137
+ * @request POST:/accident-service/evidence/sync/transfer-resource/{resourceId}
4138
+ * @response `200` `void` OK
4139
+ * @response `201` `void` Created
4140
+ * @response `401` `void` Unauthorized
4141
+ * @response `403` `void` Forbidden
4142
+ * @response `404` `void` Not Found
4143
+ */
4144
+ syncTransferResourceByResourceId: (resourceId: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4145
+ /**
4146
+ * No description
4147
+ *
4148
+ * @tags evidence
4149
+ * @name SyncTransferById
4150
+ * @summary 按ID同步证据信息
4151
+ * @request POST:/accident-service/evidence/sync/{id}/transfer
4152
+ * @response `200` `void` OK
4153
+ * @response `201` `void` Created
4154
+ * @response `401` `void` Unauthorized
4155
+ * @response `403` `void` Forbidden
4156
+ * @response `404` `void` Not Found
4157
+ */
4158
+ syncTransferById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3756
4159
  };
3757
4160
  insuranceUser: {
3758
4161
  /**