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/query.d.ts CHANGED
@@ -8,6 +8,25 @@ export declare class AddressDetail {
8
8
  towncode: string;
9
9
  township: string;
10
10
  }
11
+ export declare class AssistantInputTip {
12
+ adcode: string;
13
+ address: string;
14
+ district: string;
15
+ id: string;
16
+ /** @format double */
17
+ latitude: number;
18
+ location: string;
19
+ /** @format double */
20
+ longitude: number;
21
+ name: string;
22
+ }
23
+ export declare class AssistantInputTipsResponse {
24
+ /** @format int32 */
25
+ count: number;
26
+ info: string;
27
+ status: string;
28
+ tips: AssistantInputTip[];
29
+ }
11
30
  export declare class DataListBagPoliceEventDTO {
12
31
  list: PoliceEventDTO[];
13
32
  /** @format int64 */
@@ -670,26 +689,8 @@ export declare class PageResultZhiKongChuFaAggregateRecord {
670
689
  total: number;
671
690
  }
672
691
  export declare class PersonInfo {
673
- /** 住址 */
674
- address: string;
675
- /** 城市 */
676
- city: string;
677
- /** 性别 1: 男,2: 女 */
678
- gender: string;
679
- /** 身份证号 */
680
- idCardNumber: string;
681
- /** 手机号 */
682
- phone: string;
683
- /** 图片资源ID */
684
- pictureResourceId: string;
685
- /** 图片资源ID */
686
- pictureUrl: string;
687
- /** 省份 */
688
- province: string;
689
- /** 姓名 */
690
- realName: string;
691
- /** @format double */
692
- similarity: number;
692
+ sfzmhm: string;
693
+ xm: string;
693
694
  }
694
695
  export declare class PoliceEventDTO {
695
696
  /** 案发地点 */
@@ -770,6 +771,11 @@ export declare class PoliceEventQueryBean {
770
771
  * @format int64
771
772
  */
772
773
  bjsjAfter?: number;
774
+ /**
775
+ * 报警时间小于
776
+ * @format int64
777
+ */
778
+ bjsjBefore?: number;
773
779
  /** 管辖部门代码 */
774
780
  departments?: string[];
775
781
  /** 联系电话 */
@@ -792,6 +798,9 @@ export declare class QRCodeResolveRequest {
792
798
  barcode: string;
793
799
  department?: string;
794
800
  }
801
+ export declare class QRCodeScanResponse {
802
+ content: string;
803
+ }
795
804
  export declare class ReGeoResponse {
796
805
  info: string;
797
806
  infocode: string;
@@ -1282,6 +1291,8 @@ export declare class VehiclePlateMeta {
1282
1291
  color: string;
1283
1292
  /** 号牌号码 */
1284
1293
  hphm: string;
1294
+ /** 资源 id */
1295
+ resourceId: string;
1285
1296
  /**
1286
1297
  * 是否识别成功
1287
1298
  * @example false
@@ -1772,6 +1783,8 @@ export declare class ZhiKongChuFaRecordImage {
1772
1783
  imgPath: string;
1773
1784
  /** 图片类型 */
1774
1785
  imgType: string;
1786
+ /** 原始图片地址 */
1787
+ originImagePath: string;
1775
1788
  }
1776
1789
  export declare class ZhiKongChuFaUpdateResponse {
1777
1790
  /** 返回码,200为成功 */
@@ -1932,6 +1945,18 @@ export declare class GenerateByUrlParams {
1932
1945
  /** url */
1933
1946
  url: string;
1934
1947
  }
1948
+ export declare class GeoAssistantInputTipsParams {
1949
+ /** keywords */
1950
+ keywords: string;
1951
+ /** type */
1952
+ type?: string;
1953
+ /** location */
1954
+ location?: string;
1955
+ /** city */
1956
+ city?: string;
1957
+ /** citylimit */
1958
+ citylimit?: boolean;
1959
+ }
1935
1960
  export declare class GeoGeoParams {
1936
1961
  /** address */
1937
1962
  address: string;
@@ -2014,10 +2039,6 @@ export declare class RoadSectionByRoadAndSectionParams {
2014
2039
  section: string;
2015
2040
  }
2016
2041
  export declare class ViolationForceParams {
2017
- /** 裁决标记 */
2018
- cjbj?: string;
2019
- /** 车辆识别代号 */
2020
- clsbdh?: string;
2021
2042
  /** 是否已删除 */
2022
2043
  deleted?: boolean;
2023
2044
  /** 号牌号码 */
@@ -2026,6 +2047,8 @@ export declare class ViolationForceParams {
2026
2047
  hpzl?: string;
2027
2048
  /** 按主键批量查询 */
2028
2049
  ids?: string[];
2050
+ /** 身份证明号码 */
2051
+ jszh?: string;
2029
2052
  /** 关键字模糊查询 */
2030
2053
  key?: string;
2031
2054
  orderBy?: string[];
@@ -2035,8 +2058,16 @@ export declare class ViolationForceParams {
2035
2058
  pageSize?: number;
2036
2059
  /** 查询发起人。默认为当前用户 */
2037
2060
  queryBy?: string;
2038
- /** 身份证明号码 */
2039
- sfzmhm?: string;
2061
+ /**
2062
+ * 违法时间开始
2063
+ * @format int64
2064
+ */
2065
+ wfsjBegin?: number;
2066
+ /**
2067
+ * 违法时间结束
2068
+ * @format int64
2069
+ */
2070
+ wfsjEnd?: number;
2040
2071
  /** 文书编号 */
2041
2072
  wsbh?: string;
2042
2073
  /** 文书类别 */
@@ -2066,6 +2097,16 @@ export declare class ViolationViolationParams {
2066
2097
  pageSize?: number;
2067
2098
  /** 查询发起人。默认为当前用户 */
2068
2099
  queryBy?: string;
2100
+ /**
2101
+ * 违法时间开始
2102
+ * @format int64
2103
+ */
2104
+ wfsjBegin?: number;
2105
+ /**
2106
+ * 违法时间结束
2107
+ * @format int64
2108
+ */
2109
+ wfsjEnd?: number;
2069
2110
  /** 序号 */
2070
2111
  xh?: string;
2071
2112
  }
@@ -2193,6 +2234,11 @@ export declare class JjdParams {
2193
2234
  * @format int64
2194
2235
  */
2195
2236
  bjsjAfter?: number;
2237
+ /**
2238
+ * 报警时间小于
2239
+ * @format int64
2240
+ */
2241
+ bjsjBefore?: number;
2196
2242
  /** 管辖部门代码 */
2197
2243
  departments?: string[];
2198
2244
  /** 联系电话 */
@@ -2208,39 +2254,26 @@ export declare class JjdParams {
2208
2254
  /** 行政区划 */
2209
2255
  xzqh?: string;
2210
2256
  }
2211
- export declare class DeleteJjdMarkUnhandledByJjdbhParams {
2212
- /** 标记未未处理原因 */
2213
- reason?: string;
2214
- /** jjdbh */
2215
- jjdbh: string;
2216
- }
2217
- export declare class PoliceEventParams {
2257
+ export declare class JjdMakeupDataParams {
2218
2258
  /**
2219
- * 报警时间大于
2259
+ * idBegin
2220
2260
  * @format int64
2221
2261
  */
2222
- bjsjAfter?: number;
2223
- /** 管辖部门代码 */
2224
- departments?: string[];
2225
- /** 联系电话 */
2226
- dh?: string;
2227
- /** 接警单编号 */
2228
- jjdbh?: string;
2229
- /** 仅显示未处理的警情 */
2230
- onlyUnhandled?: boolean;
2231
- /** @format int32 */
2232
- pageIndex?: number;
2233
- /** @format int32 */
2234
- pageSize?: number;
2235
- /** 行政区划 */
2236
- xzqh?: string;
2262
+ idBegin: number;
2237
2263
  }
2238
- export declare class DeleteMarkUnHandledByJjdbhParams {
2264
+ export declare class DeleteJjdMarkUnhandledByJjdbhParams {
2239
2265
  /** 标记未未处理原因 */
2240
2266
  reason?: string;
2241
2267
  /** jjdbh */
2242
2268
  jjdbh: string;
2243
2269
  }
2270
+ export declare class ScanPayload {
2271
+ /**
2272
+ * file
2273
+ * @format binary
2274
+ */
2275
+ file: File;
2276
+ }
2244
2277
  export declare class RoadParams {
2245
2278
  /** 是否已删除 */
2246
2279
  deleted?: boolean;
@@ -2250,12 +2283,18 @@ export declare class RoadParams {
2250
2283
  dldm?: string;
2251
2284
  /** 道路代码,支持多个查询 */
2252
2285
  dldmIn?: string[];
2286
+ /** 道路类型,支持多个查询 */
2287
+ dllxIn?: string[];
2253
2288
  /** @format int64 */
2254
2289
  editTime?: number;
2290
+ /** 防护设施类型,支持多个查询 */
2291
+ fhsslxIn?: string[];
2255
2292
  /** 是否根据当前用户的使用管理部门进行过滤 */
2256
2293
  filterBySyglbm?: boolean;
2257
2294
  /** 是否根据当前用户管理行政区划进行过滤 */
2258
2295
  filterByXzqh?: boolean;
2296
+ /** 公路行政等级,支持多个查询 */
2297
+ glxzdjIn?: string[];
2259
2298
  /** 按主键批量查询 */
2260
2299
  ids?: string[];
2261
2300
  /** 关键字模糊查询 */
@@ -2299,6 +2338,10 @@ export declare class RoadSectionParams {
2299
2338
  /** 使用管理部门 */
2300
2339
  syglbm?: string[];
2301
2340
  }
2341
+ export declare class ExportParams {
2342
+ /** department */
2343
+ department: string;
2344
+ }
2302
2345
  export declare class ImportBody {
2303
2346
  /**
2304
2347
  * file
@@ -2310,6 +2353,10 @@ export declare class ImportParams {
2310
2353
  /** department */
2311
2354
  department: string;
2312
2355
  }
2356
+ export declare class ExportParams3 {
2357
+ /** department */
2358
+ department: string;
2359
+ }
2313
2360
  export declare class ImportInput {
2314
2361
  /**
2315
2362
  * file
@@ -2317,7 +2364,7 @@ export declare class ImportInput {
2317
2364
  */
2318
2365
  file: File;
2319
2366
  }
2320
- export declare class ImportParams2 {
2367
+ export declare class ImportParams1 {
2321
2368
  /** department */
2322
2369
  department: string;
2323
2370
  }
@@ -2334,6 +2381,77 @@ export declare class SurveilParams {
2334
2381
  wfsjEnd?: number;
2335
2382
  wfxw?: string;
2336
2383
  }
2384
+ export declare class PoliceEventParams {
2385
+ /**
2386
+ * 报警时间大于
2387
+ * @format int64
2388
+ */
2389
+ bjsjAfter?: number;
2390
+ /**
2391
+ * 报警时间小于
2392
+ * @format int64
2393
+ */
2394
+ bjsjBefore?: number;
2395
+ /** 管辖部门代码 */
2396
+ departments?: string[];
2397
+ /** 联系电话 */
2398
+ dh?: string;
2399
+ /** 接警单编号 */
2400
+ jjdbh?: string;
2401
+ /** 仅显示未处理的警情 */
2402
+ onlyUnhandled?: boolean;
2403
+ /** @format int32 */
2404
+ pageIndex?: number;
2405
+ /** @format int32 */
2406
+ pageSize?: number;
2407
+ /** 行政区划 */
2408
+ xzqh?: string;
2409
+ }
2410
+ export declare class DeleteMarkUnHandledByJjdbhParams {
2411
+ /** 标记未未处理原因 */
2412
+ reason?: string;
2413
+ /** jjdbh */
2414
+ jjdbh: string;
2415
+ }
2416
+ export declare class WorkflowParams {
2417
+ /**
2418
+ * 应用 ID
2419
+ * @format int32
2420
+ */
2421
+ appId?: number;
2422
+ /** 申请人 ID */
2423
+ applyUserId?: string;
2424
+ /** 申请人 */
2425
+ applyUserName?: string;
2426
+ /** 处理任务的人 */
2427
+ assignee?: string;
2428
+ /** 候选组 */
2429
+ candidateGroup?: string;
2430
+ /** 候选人 */
2431
+ candidateUser?: string;
2432
+ /** 模型名称 */
2433
+ modelName?: string;
2434
+ /** @format int32 */
2435
+ pageNum?: number;
2436
+ /** @format int32 */
2437
+ pageSize?: number;
2438
+ /** 流程实例状态 */
2439
+ processStatus?: string;
2440
+ /** 查询编码 */
2441
+ searchKey?: string;
2442
+ /** 查询名称 */
2443
+ searchName?: string;
2444
+ /** 流程单号 */
2445
+ searchNum?: string;
2446
+ /** 任务 ID */
2447
+ taskId?: string;
2448
+ /** 任务名称 */
2449
+ taskName?: string;
2450
+ /** 查询时间范围的结束时间 */
2451
+ timeEnd?: string;
2452
+ /** 查询时间范围的开始时间 */
2453
+ timeStart?: string;
2454
+ }
2337
2455
  export declare class VehicleParams {
2338
2456
  /** 车辆识别代号 */
2339
2457
  clsbdh?: string;
@@ -2366,10 +2484,6 @@ export declare class ByHphmHpzlParams {
2366
2484
  hpzl: string;
2367
2485
  }
2368
2486
  export declare class ForceParams {
2369
- /** 裁决标记 */
2370
- cjbj?: string;
2371
- /** 车辆识别代号 */
2372
- clsbdh?: string;
2373
2487
  /** 是否已删除 */
2374
2488
  deleted?: boolean;
2375
2489
  /** 号牌号码 */
@@ -2378,6 +2492,8 @@ export declare class ForceParams {
2378
2492
  hpzl?: string;
2379
2493
  /** 按主键批量查询 */
2380
2494
  ids?: string[];
2495
+ /** 身份证明号码 */
2496
+ jszh?: string;
2381
2497
  /** 关键字模糊查询 */
2382
2498
  key?: string;
2383
2499
  orderBy?: string[];
@@ -2387,8 +2503,16 @@ export declare class ForceParams {
2387
2503
  pageSize?: number;
2388
2504
  /** 查询发起人。默认为当前用户 */
2389
2505
  queryBy?: string;
2390
- /** 身份证明号码 */
2391
- sfzmhm?: string;
2506
+ /**
2507
+ * 违法时间开始
2508
+ * @format int64
2509
+ */
2510
+ wfsjBegin?: number;
2511
+ /**
2512
+ * 违法时间结束
2513
+ * @format int64
2514
+ */
2515
+ wfsjEnd?: number;
2392
2516
  /** 文书编号 */
2393
2517
  wsbh?: string;
2394
2518
  /** 文书类别 */
@@ -2435,6 +2559,16 @@ export declare class ViolationParams {
2435
2559
  pageSize?: number;
2436
2560
  /** 查询发起人。默认为当前用户 */
2437
2561
  queryBy?: string;
2562
+ /**
2563
+ * 违法时间开始
2564
+ * @format int64
2565
+ */
2566
+ wfsjBegin?: number;
2567
+ /**
2568
+ * 违法时间结束
2569
+ * @format int64
2570
+ */
2571
+ wfsjEnd?: number;
2438
2572
  /** 序号 */
2439
2573
  xh?: string;
2440
2574
  }
@@ -2442,7 +2576,7 @@ export declare class WeatherNowParams {
2442
2576
  /** department */
2443
2577
  department: string;
2444
2578
  }
2445
- export declare class VioCodeParams8 {
2579
+ export declare class VioCodeParams9 {
2446
2580
  /** 是否已删除 */
2447
2581
  deleted?: boolean;
2448
2582
  /** 部门代码 */
@@ -2490,14 +2624,18 @@ export declare class VioCodeParams8 {
2490
2624
  /** 暂扣标记 */
2491
2625
  zkbj?: string;
2492
2626
  }
2493
- export declare class ImportPayload8 {
2627
+ export declare class ExportParams9 {
2628
+ /** department */
2629
+ department: string;
2630
+ }
2631
+ export declare class ImportPayload7 {
2494
2632
  /**
2495
2633
  * file
2496
2634
  * @format binary
2497
2635
  */
2498
2636
  file: File;
2499
2637
  }
2500
- export declare class ImportParams8 {
2638
+ export declare class ImportParams9 {
2501
2639
  /** department */
2502
2640
  department: string;
2503
2641
  }
@@ -2513,8 +2651,12 @@ export declare class OptionAllParams {
2513
2651
  }
2514
2652
  export declare type OptionSaveAllPayload = WfxwOption[];
2515
2653
  export declare class ZkcfListParams {
2654
+ /** 结束时间 */
2655
+ endTime?: string;
2516
2656
  /** 匹配内容 */
2517
2657
  idNumber?: string;
2658
+ /** 开始时间 */
2659
+ startTime?: string;
2518
2660
  /** 查询方式:1、身份证,2、车牌号 */
2519
2661
  type?: string;
2520
2662
  }
@@ -2596,36 +2738,6 @@ interface HttpClient {
2596
2738
  declare class Api {
2597
2739
  private http;
2598
2740
  constructor(http: HttpClient);
2599
- decode: {
2600
- /**
2601
- * No description
2602
- *
2603
- * @tags decode
2604
- * @name JiaxingPersonInfo
2605
- * @summary 嘉兴人员信息二维码内容解密
2606
- * @request POST:/query/decode/jiaxing-person-info
2607
- * @response `200` `PersonInfo` OK
2608
- * @response `201` `void` Created
2609
- * @response `401` `void` Unauthorized
2610
- * @response `403` `void` Forbidden
2611
- * @response `404` `void` Not Found
2612
- */
2613
- jiaxingPersonInfo: (data: Request, axiosConfig?: AxiosRequestConfig) => Promise<PersonInfo>;
2614
- /**
2615
- * No description
2616
- *
2617
- * @tags decode
2618
- * @name JiaxingViolationInfo
2619
- * @summary 嘉兴行人、非机动车违法二维码内容解密
2620
- * @request POST:/query/decode/jiaxing-violation-info
2621
- * @response `200` `ViolationInfo` OK
2622
- * @response `201` `void` Created
2623
- * @response `401` `void` Unauthorized
2624
- * @response `403` `void` Forbidden
2625
- * @response `404` `void` Not Found
2626
- */
2627
- jiaxingViolationInfo: (data: Request, axiosConfig?: AxiosRequestConfig) => Promise<ViolationInfo>;
2628
- };
2629
2741
  driverLicense: {
2630
2742
  /**
2631
2743
  * @description 从系统缓存进行查询<br>所需权限:sz:query:driver
@@ -2992,6 +3104,19 @@ declare class Api {
2992
3104
  * @response `404` `void` Not Found
2993
3105
  */
2994
3106
  geoAmapProxyV4MapStyles: (axiosConfig?: AxiosRequestConfig) => Promise<any>;
3107
+ /**
3108
+ * No description
3109
+ *
3110
+ * @tags common
3111
+ * @name GeoAssistantInputTips
3112
+ * @summary 地理位置输入提示
3113
+ * @request GET:/query/common/geo/assistant/input-tips
3114
+ * @response `200` `AssistantInputTipsResponse` OK
3115
+ * @response `401` `void` Unauthorized
3116
+ * @response `403` `void` Forbidden
3117
+ * @response `404` `void` Not Found
3118
+ */
3119
+ geoAssistantInputTips: (query: GeoAssistantInputTipsParams, axiosConfig?: AxiosRequestConfig) => Promise<AssistantInputTipsResponse>;
2995
3120
  /**
2996
3121
  * No description
2997
3122
  *
@@ -3437,6 +3562,36 @@ declare class Api {
3437
3562
  */
3438
3563
  vioCode61CacheClearAll: (axiosConfig?: AxiosRequestConfig) => Promise<void>;
3439
3564
  };
3565
+ decode: {
3566
+ /**
3567
+ * No description
3568
+ *
3569
+ * @tags decode
3570
+ * @name JiaxingPersonInfo
3571
+ * @summary 嘉兴人员信息二维码内容解密
3572
+ * @request POST:/query/decode/jiaxing-person-info
3573
+ * @response `200` `PersonInfo` OK
3574
+ * @response `201` `void` Created
3575
+ * @response `401` `void` Unauthorized
3576
+ * @response `403` `void` Forbidden
3577
+ * @response `404` `void` Not Found
3578
+ */
3579
+ jiaxingPersonInfo: (data: Request, axiosConfig?: AxiosRequestConfig) => Promise<PersonInfo>;
3580
+ /**
3581
+ * No description
3582
+ *
3583
+ * @tags decode
3584
+ * @name JiaxingViolationInfo
3585
+ * @summary 嘉兴行人、非机动车违法二维码内容解密
3586
+ * @request POST:/query/decode/jiaxing-violation-info
3587
+ * @response `200` `ViolationInfo` OK
3588
+ * @response `201` `void` Created
3589
+ * @response `401` `void` Unauthorized
3590
+ * @response `403` `void` Forbidden
3591
+ * @response `404` `void` Not Found
3592
+ */
3593
+ jiaxingViolationInfo: (data: Request, axiosConfig?: AxiosRequestConfig) => Promise<ViolationInfo>;
3594
+ };
3440
3595
  laws: {
3441
3596
  /**
3442
3597
  * No description
@@ -3678,6 +3833,20 @@ declare class Api {
3678
3833
  * @response `404` `void` Not Found
3679
3834
  */
3680
3835
  jjd: (query: JjdParams, axiosConfig?: AxiosRequestConfig) => Promise<DataListBagPoliceEventDTO>;
3836
+ /**
3837
+ * No description
3838
+ *
3839
+ * @tags police
3840
+ * @name JjdMakeupData
3841
+ * @summary 修复历史数据
3842
+ * @request POST:/query/police/jjd/makeup-data
3843
+ * @response `200` `void` OK
3844
+ * @response `201` `void` Created
3845
+ * @response `401` `void` Unauthorized
3846
+ * @response `403` `void` Forbidden
3847
+ * @response `404` `void` Not Found
3848
+ */
3849
+ jjdMakeupData: (query: JjdMakeupDataParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3681
3850
  /**
3682
3851
  * No description
3683
3852
  *
@@ -3720,47 +3889,21 @@ declare class Api {
3720
3889
  */
3721
3890
  deleteJjdMarkUnhandledByJjdbh: ({ jjdbh, ...query }: DeleteJjdMarkUnhandledByJjdbhParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3722
3891
  };
3723
- policeEvent: {
3724
- /**
3725
- * No description
3726
- *
3727
- * @tags policeEvent
3728
- * @name PoliceEvent
3729
- * @summary 获取最近24小时的警情列表
3730
- * @request GET:/query/police-event
3731
- * @response `200` `DataListBagPoliceEventDTO` OK
3732
- * @response `401` `void` Unauthorized
3733
- * @response `403` `void` Forbidden
3734
- * @response `404` `void` Not Found
3735
- */
3736
- policeEvent: (query: PoliceEventParams, axiosConfig?: AxiosRequestConfig) => Promise<DataListBagPoliceEventDTO>;
3892
+ qrcode: {
3737
3893
  /**
3738
3894
  * No description
3739
3895
  *
3740
- * @tags policeEvent
3741
- * @name PutMarkHandledByJjdbh
3742
- * @summary 将指定警情标记为已处理
3743
- * @request PUT:/query/police-event/{jjdbh}/mark-handled
3744
- * @response `200` `PoliceEventPushRecord` OK
3896
+ * @tags qrcode
3897
+ * @name Scan
3898
+ * @summary 文件上传二维码解析
3899
+ * @request POST:/query/qrcode/scan
3900
+ * @response `200` `QRCodeScanResponse` OK
3745
3901
  * @response `201` `void` Created
3746
3902
  * @response `401` `void` Unauthorized
3747
3903
  * @response `403` `void` Forbidden
3748
3904
  * @response `404` `void` Not Found
3749
3905
  */
3750
- putMarkHandledByJjdbh: (jjdbh: string, axiosConfig?: AxiosRequestConfig) => Promise<PoliceEventPushRecord>;
3751
- /**
3752
- * No description
3753
- *
3754
- * @tags policeEvent
3755
- * @name DeleteMarkUnHandledByJjdbh
3756
- * @summary 将指定警情标记为未处理
3757
- * @request DELETE:/query/police-event/{jjdbh}/mark-un-handled
3758
- * @response `200` `void` OK
3759
- * @response `204` `void` No Content
3760
- * @response `401` `void` Unauthorized
3761
- * @response `403` `void` Forbidden
3762
- */
3763
- deleteMarkUnHandledByJjdbh: ({ jjdbh, ...query }: DeleteMarkUnHandledByJjdbhParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3906
+ scan: (data: ScanPayload, axiosConfig?: AxiosRequestConfig) => Promise<QRCodeScanResponse>;
3764
3907
  };
3765
3908
  road: {
3766
3909
  /**
@@ -3776,6 +3919,20 @@ declare class Api {
3776
3919
  * @response `404` `void` Not Found
3777
3920
  */
3778
3921
  road: (query: RoadParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultRoad>;
3922
+ /**
3923
+ * No description
3924
+ *
3925
+ * @tags road
3926
+ * @name Export
3927
+ * @summary 导出道路代码
3928
+ * @request POST:/query/road/export
3929
+ * @response `200` `string` OK
3930
+ * @response `201` `void` Created
3931
+ * @response `401` `void` Unauthorized
3932
+ * @response `403` `void` Forbidden
3933
+ * @response `404` `void` Not Found
3934
+ */
3935
+ export: (query: ExportParams3, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3779
3936
  /**
3780
3937
  * No description
3781
3938
  *
@@ -3789,7 +3946,7 @@ declare class Api {
3789
3946
  * @response `403` `void` Forbidden
3790
3947
  * @response `404` `void` Not Found
3791
3948
  */
3792
- import: (query: ImportParams2, data: ImportInput, axiosConfig?: AxiosRequestConfig) => Promise<number>;
3949
+ import: (query: ImportParams1, data: ImportInput, axiosConfig?: AxiosRequestConfig) => Promise<number>;
3793
3950
  /**
3794
3951
  * @description 所需权限:sz:sync:road
3795
3952
  *
@@ -3819,6 +3976,20 @@ declare class Api {
3819
3976
  * @response `404` `void` Not Found
3820
3977
  */
3821
3978
  roadSection: (query: RoadSectionParams, axiosConfig?: AxiosRequestConfig) => Promise<PageResultRoadSection>;
3979
+ /**
3980
+ * No description
3981
+ *
3982
+ * @tags roadSection
3983
+ * @name Export
3984
+ * @summary 导出路段代码
3985
+ * @request POST:/query/road-section/export
3986
+ * @response `200` `string` OK
3987
+ * @response `201` `void` Created
3988
+ * @response `401` `void` Unauthorized
3989
+ * @response `403` `void` Forbidden
3990
+ * @response `404` `void` Not Found
3991
+ */
3992
+ export: (query: ExportParams, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3822
3993
  /**
3823
3994
  * No description
3824
3995
  *
@@ -3850,7 +4021,7 @@ declare class Api {
3850
4021
  };
3851
4022
  surveil: {
3852
4023
  /**
3853
- * No description
4024
+ * @description 所需权限:sz:query:surveil
3854
4025
  *
3855
4026
  * @tags surveil
3856
4027
  * @name Surveil
@@ -3863,6 +4034,63 @@ declare class Api {
3863
4034
  */
3864
4035
  surveil: (query: SurveilParams, axiosConfig?: AxiosRequestConfig) => Promise<DataListBagSurveilDTO>;
3865
4036
  };
4037
+ policeEvent: {
4038
+ /**
4039
+ * No description
4040
+ *
4041
+ * @tags policeEvent
4042
+ * @name PoliceEvent
4043
+ * @summary 获取最近24小时的警情列表
4044
+ * @request GET:/query/police-event
4045
+ * @response `200` `DataListBagPoliceEventDTO` OK
4046
+ * @response `401` `void` Unauthorized
4047
+ * @response `403` `void` Forbidden
4048
+ * @response `404` `void` Not Found
4049
+ */
4050
+ policeEvent: (query: PoliceEventParams, axiosConfig?: AxiosRequestConfig) => Promise<DataListBagPoliceEventDTO>;
4051
+ /**
4052
+ * No description
4053
+ *
4054
+ * @tags policeEvent
4055
+ * @name PutMarkHandledByJjdbh
4056
+ * @summary 将指定警情标记为已处理
4057
+ * @request PUT:/query/police-event/{jjdbh}/mark-handled
4058
+ * @response `200` `PoliceEventPushRecord` OK
4059
+ * @response `201` `void` Created
4060
+ * @response `401` `void` Unauthorized
4061
+ * @response `403` `void` Forbidden
4062
+ * @response `404` `void` Not Found
4063
+ */
4064
+ putMarkHandledByJjdbh: (jjdbh: string, axiosConfig?: AxiosRequestConfig) => Promise<PoliceEventPushRecord>;
4065
+ /**
4066
+ * No description
4067
+ *
4068
+ * @tags policeEvent
4069
+ * @name DeleteMarkUnHandledByJjdbh
4070
+ * @summary 将指定警情标记为未处理
4071
+ * @request DELETE:/query/police-event/{jjdbh}/mark-un-handled
4072
+ * @response `200` `void` OK
4073
+ * @response `204` `void` No Content
4074
+ * @response `401` `void` Unauthorized
4075
+ * @response `403` `void` Forbidden
4076
+ */
4077
+ deleteMarkUnHandledByJjdbh: ({ jjdbh, ...query }: DeleteMarkUnHandledByJjdbhParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4078
+ };
4079
+ workflow: {
4080
+ /**
4081
+ * No description
4082
+ *
4083
+ * @tags workflow
4084
+ * @name Workflow
4085
+ * @summary 查询xxx
4086
+ * @request GET:/query/workflow
4087
+ * @response `200` `(object)[]` OK
4088
+ * @response `401` `void` Unauthorized
4089
+ * @response `403` `void` Forbidden
4090
+ * @response `404` `void` Not Found
4091
+ */
4092
+ workflow: (query: WorkflowParams, axiosConfig?: AxiosRequestConfig) => Promise<object[]>;
4093
+ };
3866
4094
  vehicle: {
3867
4095
  /**
3868
4096
  * @description 从系统缓存进行查询<br>所需权限:sz:query:vehicle
@@ -3906,7 +4134,7 @@ declare class Api {
3906
4134
  };
3907
4135
  force: {
3908
4136
  /**
3909
- * No description
4137
+ * @description 所需权限:sz:query:force
3910
4138
  *
3911
4139
  * @tags force
3912
4140
  * @name Force
@@ -3936,7 +4164,7 @@ declare class Api {
3936
4164
  };
3937
4165
  violation: {
3938
4166
  /**
3939
- * No description
4167
+ * @description 所需权限:sz:query:violation
3940
4168
  *
3941
4169
  * @tags violation
3942
4170
  * @name Violation
@@ -3962,7 +4190,21 @@ declare class Api {
3962
4190
  * @response `403` `void` Forbidden
3963
4191
  * @response `404` `void` Not Found
3964
4192
  */
3965
- vioCode: (query: VioCodeParams8, axiosConfig?: AxiosRequestConfig) => Promise<PageResultWfxwWithOption>;
4193
+ vioCode: (query: VioCodeParams9, axiosConfig?: AxiosRequestConfig) => Promise<PageResultWfxwWithOption>;
4194
+ /**
4195
+ * No description
4196
+ *
4197
+ * @tags vioCode
4198
+ * @name Export
4199
+ * @summary 导出违法行为代码
4200
+ * @request POST:/query/vio-code/export
4201
+ * @response `200` `string` OK
4202
+ * @response `201` `void` Created
4203
+ * @response `401` `void` Unauthorized
4204
+ * @response `403` `void` Forbidden
4205
+ * @response `404` `void` Not Found
4206
+ */
4207
+ export: (query: ExportParams9, axiosConfig?: AxiosRequestConfig) => Promise<string>;
3966
4208
  /**
3967
4209
  * No description
3968
4210
  *
@@ -3976,7 +4218,7 @@ declare class Api {
3976
4218
  * @response `403` `void` Forbidden
3977
4219
  * @response `404` `void` Not Found
3978
4220
  */
3979
- import: (query: ImportParams8, data: ImportPayload8, axiosConfig?: AxiosRequestConfig) => Promise<number>;
4221
+ import: (query: ImportParams9, data: ImportPayload7, axiosConfig?: AxiosRequestConfig) => Promise<number>;
3980
4222
  /**
3981
4223
  * @description 所需权限:sz:query:wfxw
3982
4224
  *