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/violation.d.ts
CHANGED
|
@@ -296,6 +296,8 @@ export declare class EntityDigest {
|
|
|
296
296
|
valid: boolean;
|
|
297
297
|
}
|
|
298
298
|
export declare class Evidence {
|
|
299
|
+
/** 证据类型 */
|
|
300
|
+
category: string;
|
|
299
301
|
/** 内容 */
|
|
300
302
|
content: string;
|
|
301
303
|
/** 描述 */
|
|
@@ -314,7 +316,7 @@ export declare class Evidence {
|
|
|
314
316
|
* @format int64
|
|
315
317
|
*/
|
|
316
318
|
time: number;
|
|
317
|
-
/**
|
|
319
|
+
/** 证据文件类型 */
|
|
318
320
|
type: string;
|
|
319
321
|
/** 上传人 */
|
|
320
322
|
user: string;
|
|
@@ -447,7 +449,7 @@ export declare class FkjeCalcRequest {
|
|
|
447
449
|
}
|
|
448
450
|
export declare class FkjeCalcResponse {
|
|
449
451
|
/**
|
|
450
|
-
*
|
|
452
|
+
* 是否允许修改处罚种类
|
|
451
453
|
* @example false
|
|
452
454
|
*/
|
|
453
455
|
allowChangeCfzl: boolean;
|
|
@@ -456,6 +458,11 @@ export declare class FkjeCalcResponse {
|
|
|
456
458
|
* @example false
|
|
457
459
|
*/
|
|
458
460
|
allowChangeFkje: boolean;
|
|
461
|
+
/**
|
|
462
|
+
* 是否允许进行简易处罚
|
|
463
|
+
* @example false
|
|
464
|
+
*/
|
|
465
|
+
allowViolation: boolean;
|
|
459
466
|
/**
|
|
460
467
|
* 罚款金额
|
|
461
468
|
* @format int32
|
|
@@ -625,6 +632,11 @@ export declare class ForceDTOReq {
|
|
|
625
632
|
sjwpmc?: string;
|
|
626
633
|
/** 收缴项目 */
|
|
627
634
|
sjxm?: string;
|
|
635
|
+
/**
|
|
636
|
+
* 是否已将数据同步回互联网平台
|
|
637
|
+
* @example false
|
|
638
|
+
*/
|
|
639
|
+
syncBack?: boolean;
|
|
628
640
|
/** 使用性质 */
|
|
629
641
|
syxz?: string;
|
|
630
642
|
/** 当事人签字 */
|
|
@@ -831,6 +843,11 @@ export declare class ForceDTORes {
|
|
|
831
843
|
sjwpmc: string;
|
|
832
844
|
/** 收缴项目 */
|
|
833
845
|
sjxm: string;
|
|
846
|
+
/**
|
|
847
|
+
* 是否已将数据同步回互联网平台
|
|
848
|
+
* @example false
|
|
849
|
+
*/
|
|
850
|
+
syncBack: boolean;
|
|
834
851
|
/** 使用性质 */
|
|
835
852
|
syxz: string;
|
|
836
853
|
taskType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
@@ -1001,6 +1018,11 @@ export declare class ForceQueryBean {
|
|
|
1001
1018
|
ryfl?: string[];
|
|
1002
1019
|
/** 事故等级, 支持多选 */
|
|
1003
1020
|
sgdj?: string[];
|
|
1021
|
+
/**
|
|
1022
|
+
* 多个额外参数匹配时的判定逻辑, 默认为And
|
|
1023
|
+
* @example false
|
|
1024
|
+
*/
|
|
1025
|
+
syncBack?: boolean;
|
|
1004
1026
|
/** 使用性质, 支持多选 */
|
|
1005
1027
|
syxz?: string[];
|
|
1006
1028
|
/** 任务类型 */
|
|
@@ -1305,6 +1327,11 @@ export declare class ImmediateDTOReq {
|
|
|
1305
1327
|
"scz4"?: string;
|
|
1306
1328
|
/** 实测值5 */
|
|
1307
1329
|
"scz5"?: string;
|
|
1330
|
+
/**
|
|
1331
|
+
* 是否已将数据同步回互联网平台
|
|
1332
|
+
* @example false
|
|
1333
|
+
*/
|
|
1334
|
+
syncBack?: boolean;
|
|
1308
1335
|
/** 模板列表 */
|
|
1309
1336
|
templateType?: "FREEMARKER" | "VUENODE";
|
|
1310
1337
|
/** 当事人签字 */
|
|
@@ -1527,6 +1554,11 @@ export declare class ImmediateDTORes {
|
|
|
1527
1554
|
"scz4": string;
|
|
1528
1555
|
/** 实测值5 */
|
|
1529
1556
|
"scz5": string;
|
|
1557
|
+
/**
|
|
1558
|
+
* 是否已将数据同步回互联网平台
|
|
1559
|
+
* @example false
|
|
1560
|
+
*/
|
|
1561
|
+
syncBack: boolean;
|
|
1530
1562
|
taskType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
1531
1563
|
/** 模板列表 */
|
|
1532
1564
|
templateType: "FREEMARKER" | "VUENODE";
|
|
@@ -1683,6 +1715,11 @@ export declare class ImmediateQueryBean {
|
|
|
1683
1715
|
reportTemplateKeyIsNull?: boolean;
|
|
1684
1716
|
/** 人员分类 */
|
|
1685
1717
|
ryfl?: string;
|
|
1718
|
+
/**
|
|
1719
|
+
* 多个额外参数匹配时的判定逻辑, 默认为And
|
|
1720
|
+
* @example false
|
|
1721
|
+
*/
|
|
1722
|
+
syncBack?: boolean;
|
|
1686
1723
|
/** 任务类型 */
|
|
1687
1724
|
taskType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
1688
1725
|
/** 违法地址 */
|
|
@@ -1705,6 +1742,12 @@ export declare class Lane {
|
|
|
1705
1742
|
laneCode: string;
|
|
1706
1743
|
laneType: string;
|
|
1707
1744
|
}
|
|
1745
|
+
export declare class ListEvidenceRequest {
|
|
1746
|
+
/** 文书编号 */
|
|
1747
|
+
code?: string;
|
|
1748
|
+
/** 文书类型 */
|
|
1749
|
+
codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
1750
|
+
}
|
|
1708
1751
|
export declare class NoticeInfoRequest {
|
|
1709
1752
|
/** 业务编号 */
|
|
1710
1753
|
code?: string;
|
|
@@ -1928,6 +1971,11 @@ export declare class ProcessStartResponse {
|
|
|
1928
1971
|
* 报告
|
|
1929
1972
|
*/
|
|
1930
1973
|
export declare class Report {
|
|
1974
|
+
/**
|
|
1975
|
+
* id
|
|
1976
|
+
* @format int64
|
|
1977
|
+
*/
|
|
1978
|
+
id: number;
|
|
1931
1979
|
/** 备注 */
|
|
1932
1980
|
remark: string;
|
|
1933
1981
|
/** 资源id */
|
|
@@ -1969,6 +2017,14 @@ export declare class SaveEvidenceRequest {
|
|
|
1969
2017
|
/** 证据上传人 */
|
|
1970
2018
|
user?: string;
|
|
1971
2019
|
}
|
|
2020
|
+
export declare class StringContentRequest {
|
|
2021
|
+
/** 内容 */
|
|
2022
|
+
content?: string;
|
|
2023
|
+
}
|
|
2024
|
+
export declare class StringContentResponse {
|
|
2025
|
+
/** 内容 */
|
|
2026
|
+
content: string;
|
|
2027
|
+
}
|
|
1972
2028
|
export declare class SurveilDTO {
|
|
1973
2029
|
/** 辅警用户名 */
|
|
1974
2030
|
auxiliaryPoliceCode: string;
|
|
@@ -2099,6 +2155,11 @@ export declare class SurveilDTO {
|
|
|
2099
2155
|
scxh: string;
|
|
2100
2156
|
/** 违停通知详情 */
|
|
2101
2157
|
surveilNoticeList: SurveilNoticeDTO[];
|
|
2158
|
+
/**
|
|
2159
|
+
* 是否已将数据同步回互联网平台
|
|
2160
|
+
* @example false
|
|
2161
|
+
*/
|
|
2162
|
+
syncBack: boolean;
|
|
2102
2163
|
/** 使用性质 */
|
|
2103
2164
|
syxz: string;
|
|
2104
2165
|
taskType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
@@ -2764,6 +2825,242 @@ export declare class ViolationCircuitBreakerQueryBean {
|
|
|
2764
2825
|
*/
|
|
2765
2826
|
workload?: boolean;
|
|
2766
2827
|
}
|
|
2828
|
+
export declare class ViolationDTO {
|
|
2829
|
+
/** 辅警用户名 */
|
|
2830
|
+
auxiliaryPoliceCode: string;
|
|
2831
|
+
/** 辅警用户名-姓名 */
|
|
2832
|
+
auxiliaryPoliceName: string;
|
|
2833
|
+
/** 辅警签字 */
|
|
2834
|
+
auxiliaryPoliceSignature: string;
|
|
2835
|
+
/**
|
|
2836
|
+
* 本大队智控道路
|
|
2837
|
+
* @example false
|
|
2838
|
+
*/
|
|
2839
|
+
bddzkdl: boolean;
|
|
2840
|
+
/**
|
|
2841
|
+
* 报警时间
|
|
2842
|
+
* @format int64
|
|
2843
|
+
*/
|
|
2844
|
+
bjsj: number;
|
|
2845
|
+
/** 备注 */
|
|
2846
|
+
bz: string;
|
|
2847
|
+
/**
|
|
2848
|
+
* 标准值
|
|
2849
|
+
* @format int32
|
|
2850
|
+
*/
|
|
2851
|
+
bzz: number;
|
|
2852
|
+
/** 取消原因 */
|
|
2853
|
+
cancelReason: string;
|
|
2854
|
+
/**
|
|
2855
|
+
* 是否已取消
|
|
2856
|
+
* @example false
|
|
2857
|
+
*/
|
|
2858
|
+
cancelled: boolean;
|
|
2859
|
+
/** 处罚地点 */
|
|
2860
|
+
cfdd: string;
|
|
2861
|
+
/** 处罚种类 */
|
|
2862
|
+
cfzl: string;
|
|
2863
|
+
/** 车辆分类 */
|
|
2864
|
+
clfl: string;
|
|
2865
|
+
/** 车辆识别代号 */
|
|
2866
|
+
clsbdh: string;
|
|
2867
|
+
/**
|
|
2868
|
+
* 处理时间
|
|
2869
|
+
* @format int64
|
|
2870
|
+
*/
|
|
2871
|
+
clsj: number;
|
|
2872
|
+
/**
|
|
2873
|
+
* 创建时间
|
|
2874
|
+
* @format int64
|
|
2875
|
+
*/
|
|
2876
|
+
createTime: number;
|
|
2877
|
+
/** 创建人用户名 */
|
|
2878
|
+
createUser: string;
|
|
2879
|
+
/** 财政编号 */
|
|
2880
|
+
czbh: string;
|
|
2881
|
+
/** 档案编号 */
|
|
2882
|
+
dabh: string;
|
|
2883
|
+
/** 当场缴款发票单号 */
|
|
2884
|
+
dcjkfpdh: string;
|
|
2885
|
+
/** 地点米数 */
|
|
2886
|
+
ddms: string;
|
|
2887
|
+
/**
|
|
2888
|
+
* 是否已删除
|
|
2889
|
+
* @example false
|
|
2890
|
+
*/
|
|
2891
|
+
deleted: boolean;
|
|
2892
|
+
/** 部门代码 */
|
|
2893
|
+
department: string;
|
|
2894
|
+
/** 部门全称 */
|
|
2895
|
+
departmentFullname: string;
|
|
2896
|
+
/** 部门简称 */
|
|
2897
|
+
departmentShortname: string;
|
|
2898
|
+
/** 电话 */
|
|
2899
|
+
dh: string;
|
|
2900
|
+
/** 数据签名 */
|
|
2901
|
+
digest: EntityDigest;
|
|
2902
|
+
/** 当事人 */
|
|
2903
|
+
dsr: string;
|
|
2904
|
+
/**
|
|
2905
|
+
* 修改时间
|
|
2906
|
+
* @format int64
|
|
2907
|
+
*/
|
|
2908
|
+
editTime: number;
|
|
2909
|
+
/** 修改人用户名 */
|
|
2910
|
+
editUser: string;
|
|
2911
|
+
evidenceList: Evidence[];
|
|
2912
|
+
/** 额外信息 */
|
|
2913
|
+
extra: Record<string, string>;
|
|
2914
|
+
/** 额外信息 */
|
|
2915
|
+
extras: string;
|
|
2916
|
+
/** 非机动车号牌种类 */
|
|
2917
|
+
fjdchpzl: string;
|
|
2918
|
+
/**
|
|
2919
|
+
* 罚款金额
|
|
2920
|
+
* @format int32
|
|
2921
|
+
*/
|
|
2922
|
+
fkje: number;
|
|
2923
|
+
/** 发现机关 */
|
|
2924
|
+
fxjg: string;
|
|
2925
|
+
/** 发现机关全称 */
|
|
2926
|
+
fxjgFullname: string;
|
|
2927
|
+
/** 发现机关简称 */
|
|
2928
|
+
fxjgShortname: string;
|
|
2929
|
+
/** 发证机关 */
|
|
2930
|
+
fzjg: string;
|
|
2931
|
+
/** 号牌号码 */
|
|
2932
|
+
hphm: string;
|
|
2933
|
+
/** 号牌种类 */
|
|
2934
|
+
hpzl: string;
|
|
2935
|
+
/**
|
|
2936
|
+
* 主键
|
|
2937
|
+
* @format int64
|
|
2938
|
+
*/
|
|
2939
|
+
id: number;
|
|
2940
|
+
/** 机动车所有人 */
|
|
2941
|
+
jdcsyr: string;
|
|
2942
|
+
/** 决定书编号 */
|
|
2943
|
+
jdsbh: string;
|
|
2944
|
+
/** 缴款标记 */
|
|
2945
|
+
jkbj: string;
|
|
2946
|
+
/** 缴款方式 */
|
|
2947
|
+
jkfs: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* 缴款日期
|
|
2950
|
+
* @format int64
|
|
2951
|
+
*/
|
|
2952
|
+
jkrq: number;
|
|
2953
|
+
/** 拒收拒签标记 */
|
|
2954
|
+
jsjqbj: string;
|
|
2955
|
+
/** 驾驶证号 */
|
|
2956
|
+
jszh: string;
|
|
2957
|
+
/** 交通方式 */
|
|
2958
|
+
jtfs: string;
|
|
2959
|
+
/** 经纬度 */
|
|
2960
|
+
latlng: Point;
|
|
2961
|
+
/** 路段代码 */
|
|
2962
|
+
lddm: string;
|
|
2963
|
+
/** 联系方式 */
|
|
2964
|
+
lxfs: string;
|
|
2965
|
+
/** 民警用户名 */
|
|
2966
|
+
policeCode: string;
|
|
2967
|
+
/** 辅办民警用户名 */
|
|
2968
|
+
"policeCode2": string;
|
|
2969
|
+
/** 民警用户名-姓名 */
|
|
2970
|
+
policeName: string;
|
|
2971
|
+
/** 辅办民警用户名-姓名 */
|
|
2972
|
+
"policeName2": string;
|
|
2973
|
+
/** 民警签字 */
|
|
2974
|
+
policeSignature: string;
|
|
2975
|
+
/** 辅办民警签字 */
|
|
2976
|
+
"policeSignature2": string;
|
|
2977
|
+
/** 业务编号(系统自动生成) */
|
|
2978
|
+
processBusinessKey: string;
|
|
2979
|
+
/** 流程编号(系统自动生成) */
|
|
2980
|
+
processId: string;
|
|
2981
|
+
/** 业务编号 */
|
|
2982
|
+
processUid: string;
|
|
2983
|
+
/** 六合一推送返回码 */
|
|
2984
|
+
pushCode: string;
|
|
2985
|
+
/** 六合一推送返回信息 */
|
|
2986
|
+
pushMessage: string;
|
|
2987
|
+
/** 推送六合一业务编号(系统自动生成) */
|
|
2988
|
+
pushProcessBusinessKey: string;
|
|
2989
|
+
/** 推送六合一流程编号(系统自动生成) */
|
|
2990
|
+
pushProcessId: string;
|
|
2991
|
+
/** 六合一推送状态 */
|
|
2992
|
+
pushState: "Cancel" | "Done" | "Error" | "Suspend" | "Wait";
|
|
2993
|
+
/** 智控处罚编号 */
|
|
2994
|
+
recordId: string;
|
|
2995
|
+
remark: string;
|
|
2996
|
+
/** 报告列表 */
|
|
2997
|
+
reportList: Report[];
|
|
2998
|
+
/** 生成报告的模版配置KEY */
|
|
2999
|
+
reportTemplateKey: string;
|
|
3000
|
+
/** 人员分类 */
|
|
3001
|
+
ryfl: string;
|
|
3002
|
+
/**
|
|
3003
|
+
* 实测值
|
|
3004
|
+
* @format int32
|
|
3005
|
+
*/
|
|
3006
|
+
scz: number;
|
|
3007
|
+
/** 关联事故编号 */
|
|
3008
|
+
sgbh: string;
|
|
3009
|
+
/** 事故等级 */
|
|
3010
|
+
sgdj: string;
|
|
3011
|
+
/** 非现场采集记录编号 */
|
|
3012
|
+
surveilTzsh: string;
|
|
3013
|
+
/**
|
|
3014
|
+
* 是否已将数据同步回互联网平台
|
|
3015
|
+
* @example false
|
|
3016
|
+
*/
|
|
3017
|
+
syncBack: boolean;
|
|
3018
|
+
/** 使用性质 */
|
|
3019
|
+
syxz: string;
|
|
3020
|
+
taskType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
3021
|
+
/** 业务修改记录。提取证据列表中type为update-record的内容 */
|
|
3022
|
+
updateRecordList: string[];
|
|
3023
|
+
/** 当事人签字 */
|
|
3024
|
+
userSignature: string;
|
|
3025
|
+
/** 违法地点 */
|
|
3026
|
+
wfdd: string;
|
|
3027
|
+
/** 违法地点方向 */
|
|
3028
|
+
wfddDirection: string;
|
|
3029
|
+
/** 违法地点类型 */
|
|
3030
|
+
wfddType: string;
|
|
3031
|
+
/** 违法地址 */
|
|
3032
|
+
wfdz: string;
|
|
3033
|
+
/** 违法内容 */
|
|
3034
|
+
wfnr: string;
|
|
3035
|
+
/**
|
|
3036
|
+
* 违法时间
|
|
3037
|
+
* @format int64
|
|
3038
|
+
*/
|
|
3039
|
+
wfsj: number;
|
|
3040
|
+
/** 违法行为 */
|
|
3041
|
+
wfxw: string;
|
|
3042
|
+
/** 违法行为描述 */
|
|
3043
|
+
wfxwms: string;
|
|
3044
|
+
/** 行政区划 */
|
|
3045
|
+
xzqh: string;
|
|
3046
|
+
/**
|
|
3047
|
+
* 首违免罚标记
|
|
3048
|
+
* @example false
|
|
3049
|
+
*/
|
|
3050
|
+
yjrcswmf: boolean;
|
|
3051
|
+
/** 执法场景 */
|
|
3052
|
+
zfcj: string;
|
|
3053
|
+
/** 准驾车型 */
|
|
3054
|
+
zjcx: string;
|
|
3055
|
+
/** 证件名称 */
|
|
3056
|
+
zjmc: string;
|
|
3057
|
+
/** 执勤民警 */
|
|
3058
|
+
zqmj: string;
|
|
3059
|
+
/** 住所详细地址 */
|
|
3060
|
+
zsxxdz: string;
|
|
3061
|
+
/** 住所行政区划 */
|
|
3062
|
+
zsxzqh: string;
|
|
3063
|
+
}
|
|
2767
3064
|
export declare class ViolationDTOReq {
|
|
2768
3065
|
/** 辅警用户名 */
|
|
2769
3066
|
auxiliaryPoliceCode?: string;
|
|
@@ -2941,10 +3238,17 @@ export declare class ViolationDTOReq {
|
|
|
2941
3238
|
* @format int32
|
|
2942
3239
|
*/
|
|
2943
3240
|
scz?: number;
|
|
3241
|
+
/** 关联事故编号 */
|
|
3242
|
+
sgbh?: string;
|
|
2944
3243
|
/** 事故等级 */
|
|
2945
3244
|
sgdj?: string;
|
|
2946
3245
|
/** 非现场采集记录编号 */
|
|
2947
3246
|
surveilTzsh?: string;
|
|
3247
|
+
/**
|
|
3248
|
+
* 是否已将数据同步回互联网平台
|
|
3249
|
+
* @example false
|
|
3250
|
+
*/
|
|
3251
|
+
syncBack?: boolean;
|
|
2948
3252
|
/** 使用性质 */
|
|
2949
3253
|
syxz?: string;
|
|
2950
3254
|
/** 当事人签字 */
|
|
@@ -3167,10 +3471,17 @@ export declare class ViolationDTORes {
|
|
|
3167
3471
|
* @format int32
|
|
3168
3472
|
*/
|
|
3169
3473
|
scz: number;
|
|
3474
|
+
/** 关联事故编号 */
|
|
3475
|
+
sgbh: string;
|
|
3170
3476
|
/** 事故等级 */
|
|
3171
3477
|
sgdj: string;
|
|
3172
3478
|
/** 非现场采集记录编号 */
|
|
3173
3479
|
surveilTzsh: string;
|
|
3480
|
+
/**
|
|
3481
|
+
* 是否已将数据同步回互联网平台
|
|
3482
|
+
* @example false
|
|
3483
|
+
*/
|
|
3484
|
+
syncBack: boolean;
|
|
3174
3485
|
/** 使用性质 */
|
|
3175
3486
|
syxz: string;
|
|
3176
3487
|
taskType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
@@ -3217,6 +3528,14 @@ export declare class ViolationDTORes {
|
|
|
3217
3528
|
/** 住所行政区划 */
|
|
3218
3529
|
zsxzqh: string;
|
|
3219
3530
|
}
|
|
3531
|
+
export declare class ViolationFindQueryBean {
|
|
3532
|
+
/** 决定书编号 */
|
|
3533
|
+
jdsbh?: string;
|
|
3534
|
+
}
|
|
3535
|
+
export declare class ViolationProcessSyncRequest {
|
|
3536
|
+
/** 流程ID */
|
|
3537
|
+
processId?: string;
|
|
3538
|
+
}
|
|
3220
3539
|
export declare class ViolationPushRequest {
|
|
3221
3540
|
ispApiName?: string;
|
|
3222
3541
|
jdsbh?: string;
|
|
@@ -3304,6 +3623,11 @@ export declare class ViolationQueryBean {
|
|
|
3304
3623
|
* @format int32
|
|
3305
3624
|
*/
|
|
3306
3625
|
fkjeLess?: number;
|
|
3626
|
+
/**
|
|
3627
|
+
* 是否有关联事故编号
|
|
3628
|
+
* @example false
|
|
3629
|
+
*/
|
|
3630
|
+
hasSgbh?: boolean;
|
|
3307
3631
|
/** 号牌号码 */
|
|
3308
3632
|
hphm?: string;
|
|
3309
3633
|
/** 号牌种类 */
|
|
@@ -3377,10 +3701,17 @@ export declare class ViolationQueryBean {
|
|
|
3377
3701
|
reportTemplateKeyIsNull?: boolean;
|
|
3378
3702
|
/** 人员分类。支持多选 */
|
|
3379
3703
|
ryfl?: string[];
|
|
3704
|
+
/** 关联事故编号 */
|
|
3705
|
+
sgbh?: string;
|
|
3380
3706
|
/** 事故等级 */
|
|
3381
3707
|
sgdjIn?: string[];
|
|
3382
3708
|
/** 非现场抓拍记录编号 */
|
|
3383
3709
|
surveilTzsh?: string;
|
|
3710
|
+
/**
|
|
3711
|
+
* 多个额外参数匹配时的判定逻辑, 默认为And
|
|
3712
|
+
* @example false
|
|
3713
|
+
*/
|
|
3714
|
+
syncBack?: boolean;
|
|
3384
3715
|
/** 使用性质。支持多选 */
|
|
3385
3716
|
syxz?: string[];
|
|
3386
3717
|
/** 任务类型 */
|
|
@@ -3415,10 +3746,15 @@ export declare class ViolationQueryBean {
|
|
|
3415
3746
|
/** 执法场景 */
|
|
3416
3747
|
zfcjIn?: string[];
|
|
3417
3748
|
/**
|
|
3418
|
-
*
|
|
3749
|
+
* 执法场景是否为空
|
|
3419
3750
|
* @example false
|
|
3420
3751
|
*/
|
|
3421
3752
|
zfcjIsNull?: boolean;
|
|
3753
|
+
/**
|
|
3754
|
+
* 是否为智控处罚记录
|
|
3755
|
+
* @example false
|
|
3756
|
+
*/
|
|
3757
|
+
zkcf?: boolean;
|
|
3422
3758
|
/** 执勤民警 */
|
|
3423
3759
|
zqmj?: string;
|
|
3424
3760
|
}
|
|
@@ -3675,6 +4011,8 @@ export declare class GetForceHistoryParams {
|
|
|
3675
4011
|
ryfl?: string[];
|
|
3676
4012
|
/** 事故等级, 支持多选 */
|
|
3677
4013
|
sgdj?: string[];
|
|
4014
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
4015
|
+
syncBack?: boolean;
|
|
3678
4016
|
/** 使用性质, 支持多选 */
|
|
3679
4017
|
syxz?: string[];
|
|
3680
4018
|
/** 任务类型 */
|
|
@@ -3989,6 +4327,8 @@ export declare class GetImmediateHistoryParams {
|
|
|
3989
4327
|
reportTemplateKeyIsNull?: boolean;
|
|
3990
4328
|
/** 人员分类 */
|
|
3991
4329
|
ryfl?: string;
|
|
4330
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
4331
|
+
syncBack?: boolean;
|
|
3992
4332
|
/** 任务类型 */
|
|
3993
4333
|
taskType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
3994
4334
|
/** 违法地址 */
|
|
@@ -4250,6 +4590,8 @@ export declare class SurveilCountParams {
|
|
|
4250
4590
|
reportTemplateKeyIsNull?: boolean;
|
|
4251
4591
|
/** 设备编号 */
|
|
4252
4592
|
sbbh?: string;
|
|
4593
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
4594
|
+
syncBack?: boolean;
|
|
4253
4595
|
/** 使用性质, 支持多选 */
|
|
4254
4596
|
syxzIn?: string[];
|
|
4255
4597
|
/** 任务类型 */
|
|
@@ -4383,6 +4725,8 @@ export declare class SurveilHistoryParams {
|
|
|
4383
4725
|
reportTemplateKeyIsNull?: boolean;
|
|
4384
4726
|
/** 设备编号 */
|
|
4385
4727
|
sbbh?: string;
|
|
4728
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
4729
|
+
syncBack?: boolean;
|
|
4386
4730
|
/** 使用性质, 支持多选 */
|
|
4387
4731
|
syxzIn?: string[];
|
|
4388
4732
|
/** 任务类型 */
|
|
@@ -4508,6 +4852,8 @@ export declare class SurveilHistorySimpleParams {
|
|
|
4508
4852
|
reportTemplateKeyIsNull?: boolean;
|
|
4509
4853
|
/** 设备编号 */
|
|
4510
4854
|
sbbh?: string;
|
|
4855
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
4856
|
+
syncBack?: boolean;
|
|
4511
4857
|
/** 使用性质, 支持多选 */
|
|
4512
4858
|
syxzIn?: string[];
|
|
4513
4859
|
/** 任务类型 */
|
|
@@ -4754,6 +5100,8 @@ export declare class ViolationCountParams {
|
|
|
4754
5100
|
* @format int32
|
|
4755
5101
|
*/
|
|
4756
5102
|
fkjeLess?: number;
|
|
5103
|
+
/** 是否有关联事故编号 */
|
|
5104
|
+
hasSgbh?: boolean;
|
|
4757
5105
|
/** 号牌号码 */
|
|
4758
5106
|
hphm?: string;
|
|
4759
5107
|
/** 号牌种类 */
|
|
@@ -4818,10 +5166,14 @@ export declare class ViolationCountParams {
|
|
|
4818
5166
|
reportTemplateKeyIsNull?: boolean;
|
|
4819
5167
|
/** 人员分类。支持多选 */
|
|
4820
5168
|
ryfl?: string[];
|
|
5169
|
+
/** 关联事故编号 */
|
|
5170
|
+
sgbh?: string;
|
|
4821
5171
|
/** 事故等级 */
|
|
4822
5172
|
sgdjIn?: string[];
|
|
4823
5173
|
/** 非现场抓拍记录编号 */
|
|
4824
5174
|
surveilTzsh?: string;
|
|
5175
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
5176
|
+
syncBack?: boolean;
|
|
4825
5177
|
/** 使用性质。支持多选 */
|
|
4826
5178
|
syxz?: string[];
|
|
4827
5179
|
/** 任务类型 */
|
|
@@ -4852,8 +5204,10 @@ export declare class ViolationCountParams {
|
|
|
4852
5204
|
yjrcswmf?: boolean;
|
|
4853
5205
|
/** 执法场景 */
|
|
4854
5206
|
zfcjIn?: string[];
|
|
4855
|
-
/**
|
|
5207
|
+
/** 执法场景是否为空 */
|
|
4856
5208
|
zfcjIsNull?: boolean;
|
|
5209
|
+
/** 是否为智控处罚记录 */
|
|
5210
|
+
zkcf?: boolean;
|
|
4857
5211
|
/** 执勤民警 */
|
|
4858
5212
|
zqmj?: string;
|
|
4859
5213
|
}
|
|
@@ -4865,6 +5219,12 @@ export declare class ViolationReportDownloadByJdsbhParams {
|
|
|
4865
5219
|
/** jdsbh */
|
|
4866
5220
|
jdsbh: string;
|
|
4867
5221
|
}
|
|
5222
|
+
export declare class ViolationUpdateSyncBackByJdsbhParams {
|
|
5223
|
+
/** state */
|
|
5224
|
+
state: boolean;
|
|
5225
|
+
/** jdsbh */
|
|
5226
|
+
jdsbh: string;
|
|
5227
|
+
}
|
|
4868
5228
|
export declare class GetViolationHistoryParams {
|
|
4869
5229
|
/** 协警编号 */
|
|
4870
5230
|
auxiliaryPoliceCode?: string;
|
|
@@ -4930,6 +5290,8 @@ export declare class GetViolationHistoryParams {
|
|
|
4930
5290
|
* @format int32
|
|
4931
5291
|
*/
|
|
4932
5292
|
fkjeLess?: number;
|
|
5293
|
+
/** 是否有关联事故编号 */
|
|
5294
|
+
hasSgbh?: boolean;
|
|
4933
5295
|
/** 号牌号码 */
|
|
4934
5296
|
hphm?: string;
|
|
4935
5297
|
/** 号牌种类 */
|
|
@@ -4994,10 +5356,14 @@ export declare class GetViolationHistoryParams {
|
|
|
4994
5356
|
reportTemplateKeyIsNull?: boolean;
|
|
4995
5357
|
/** 人员分类。支持多选 */
|
|
4996
5358
|
ryfl?: string[];
|
|
5359
|
+
/** 关联事故编号 */
|
|
5360
|
+
sgbh?: string;
|
|
4997
5361
|
/** 事故等级 */
|
|
4998
5362
|
sgdjIn?: string[];
|
|
4999
5363
|
/** 非现场抓拍记录编号 */
|
|
5000
5364
|
surveilTzsh?: string;
|
|
5365
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
5366
|
+
syncBack?: boolean;
|
|
5001
5367
|
/** 使用性质。支持多选 */
|
|
5002
5368
|
syxz?: string[];
|
|
5003
5369
|
/** 任务类型 */
|
|
@@ -5028,8 +5394,10 @@ export declare class GetViolationHistoryParams {
|
|
|
5028
5394
|
yjrcswmf?: boolean;
|
|
5029
5395
|
/** 执法场景 */
|
|
5030
5396
|
zfcjIn?: string[];
|
|
5031
|
-
/**
|
|
5397
|
+
/** 执法场景是否为空 */
|
|
5032
5398
|
zfcjIsNull?: boolean;
|
|
5399
|
+
/** 是否为智控处罚记录 */
|
|
5400
|
+
zkcf?: boolean;
|
|
5033
5401
|
/** 执勤民警 */
|
|
5034
5402
|
zqmj?: string;
|
|
5035
5403
|
}
|
|
@@ -5098,6 +5466,8 @@ export declare class ViolationHistoryDsrParams {
|
|
|
5098
5466
|
* @format int32
|
|
5099
5467
|
*/
|
|
5100
5468
|
fkjeLess?: number;
|
|
5469
|
+
/** 是否有关联事故编号 */
|
|
5470
|
+
hasSgbh?: boolean;
|
|
5101
5471
|
/** 号牌号码 */
|
|
5102
5472
|
hphm?: string;
|
|
5103
5473
|
/** 号牌种类 */
|
|
@@ -5162,10 +5532,14 @@ export declare class ViolationHistoryDsrParams {
|
|
|
5162
5532
|
reportTemplateKeyIsNull?: boolean;
|
|
5163
5533
|
/** 人员分类。支持多选 */
|
|
5164
5534
|
ryfl?: string[];
|
|
5535
|
+
/** 关联事故编号 */
|
|
5536
|
+
sgbh?: string;
|
|
5165
5537
|
/** 事故等级 */
|
|
5166
5538
|
sgdjIn?: string[];
|
|
5167
5539
|
/** 非现场抓拍记录编号 */
|
|
5168
5540
|
surveilTzsh?: string;
|
|
5541
|
+
/** 多个额外参数匹配时的判定逻辑, 默认为And */
|
|
5542
|
+
syncBack?: boolean;
|
|
5169
5543
|
/** 使用性质。支持多选 */
|
|
5170
5544
|
syxz?: string[];
|
|
5171
5545
|
/** 任务类型 */
|
|
@@ -5196,8 +5570,10 @@ export declare class ViolationHistoryDsrParams {
|
|
|
5196
5570
|
yjrcswmf?: boolean;
|
|
5197
5571
|
/** 执法场景 */
|
|
5198
5572
|
zfcjIn?: string[];
|
|
5199
|
-
/**
|
|
5573
|
+
/** 执法场景是否为空 */
|
|
5200
5574
|
zfcjIsNull?: boolean;
|
|
5575
|
+
/** 是否为智控处罚记录 */
|
|
5576
|
+
zkcf?: boolean;
|
|
5201
5577
|
/** 执勤民警 */
|
|
5202
5578
|
zqmj?: string;
|
|
5203
5579
|
}
|
|
@@ -6212,7 +6588,7 @@ declare class Api {
|
|
|
6212
6588
|
*
|
|
6213
6589
|
* @tags vio
|
|
6214
6590
|
* @name ViolationCalcFkjeClearCache
|
|
6215
|
-
* @summary
|
|
6591
|
+
* @summary 清除罚款金额计算相关缓存
|
|
6216
6592
|
* @request GET:/accident-service/vio/violation/calc-fkje/clear-cache
|
|
6217
6593
|
* @response `200` `FkjeCalcResponse` OK
|
|
6218
6594
|
* @response `401` `void` Unauthorized
|
|
@@ -6261,19 +6637,19 @@ declare class Api {
|
|
|
6261
6637
|
*/
|
|
6262
6638
|
violationFetchFromTrffByJdsbh: (jdsbh: string, axiosConfig?: AxiosRequestConfig) => Promise<TaskFetchFrom6In1Response>;
|
|
6263
6639
|
/**
|
|
6264
|
-
* @description 所需权限:vio:history
|
|
6640
|
+
* @description 所需权限:vio:history、vio:edit (AND)
|
|
6265
6641
|
*
|
|
6266
6642
|
* @tags vio
|
|
6267
|
-
* @name
|
|
6268
|
-
* @summary
|
|
6269
|
-
* @request POST:/accident-service/vio/violation/find-by-jdsbh/{jdsbh}/
|
|
6270
|
-
* @response `200` `
|
|
6643
|
+
* @name ViolationGenerateReportByJdsbh
|
|
6644
|
+
* @summary 通过简易处罚数据生成PDF
|
|
6645
|
+
* @request POST:/accident-service/vio/violation/find-by-jdsbh/{jdsbh}/generate-report
|
|
6646
|
+
* @response `200` `void` OK
|
|
6271
6647
|
* @response `201` `void` Created
|
|
6272
6648
|
* @response `401` `void` Unauthorized
|
|
6273
6649
|
* @response `403` `void` Forbidden
|
|
6274
6650
|
* @response `404` `void` Not Found
|
|
6275
6651
|
*/
|
|
6276
|
-
|
|
6652
|
+
violationGenerateReportByJdsbh: (jdsbh: string, data: ViolationDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
6277
6653
|
/**
|
|
6278
6654
|
* @description 所需权限:vio:history
|
|
6279
6655
|
*
|
|
@@ -6300,6 +6676,20 @@ declare class Api {
|
|
|
6300
6676
|
* @response `404` `void` Not Found
|
|
6301
6677
|
*/
|
|
6302
6678
|
violationReportPreviewByJdsbh: (jdsbh: string, axiosConfig?: AxiosRequestConfig) => Promise<string>;
|
|
6679
|
+
/**
|
|
6680
|
+
* @description 所需权限:vio:history
|
|
6681
|
+
*
|
|
6682
|
+
* @tags vio
|
|
6683
|
+
* @name ViolationUpdateSyncBackByJdsbh
|
|
6684
|
+
* @summary 更新数据回传标记
|
|
6685
|
+
* @request POST:/accident-service/vio/violation/find-by-jdsbh/{jdsbh}/update-sync-back
|
|
6686
|
+
* @response `200` `void` OK
|
|
6687
|
+
* @response `201` `void` Created
|
|
6688
|
+
* @response `401` `void` Unauthorized
|
|
6689
|
+
* @response `403` `void` Forbidden
|
|
6690
|
+
* @response `404` `void` Not Found
|
|
6691
|
+
*/
|
|
6692
|
+
violationUpdateSyncBackByJdsbh: ({ jdsbh, ...query }: ViolationUpdateSyncBackByJdsbhParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
6303
6693
|
/**
|
|
6304
6694
|
* @description 所需权限:vio:history
|
|
6305
6695
|
*
|
|
@@ -6355,7 +6745,7 @@ declare class Api {
|
|
|
6355
6745
|
*/
|
|
6356
6746
|
violationHistorySimple: (data: ViolationQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultViolationSimpleDTO>;
|
|
6357
6747
|
/**
|
|
6358
|
-
* @description 所需权限:
|
|
6748
|
+
* @description 所需权限:vio:edit
|
|
6359
6749
|
*
|
|
6360
6750
|
* @tags vio
|
|
6361
6751
|
* @name ViolationModify
|
|
@@ -6369,19 +6759,33 @@ declare class Api {
|
|
|
6369
6759
|
*/
|
|
6370
6760
|
violationModify: (data: ViolationDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<ViolationDTORes>;
|
|
6371
6761
|
/**
|
|
6372
|
-
* @description 所需权限:vio:
|
|
6762
|
+
* @description 所需权限:vio:edit
|
|
6373
6763
|
*
|
|
6374
6764
|
* @tags vio
|
|
6375
|
-
* @name
|
|
6765
|
+
* @name ViolationPushToTrff
|
|
6376
6766
|
* @summary 将指定决定书编号的简易处罚记录推送到六合一
|
|
6377
|
-
* @request POST:/accident-service/vio/violation/push-to-trff
|
|
6767
|
+
* @request POST:/accident-service/vio/violation/push-to-trff
|
|
6378
6768
|
* @response `200` `TaskPushResponse` OK
|
|
6379
6769
|
* @response `201` `void` Created
|
|
6380
6770
|
* @response `401` `void` Unauthorized
|
|
6381
6771
|
* @response `403` `void` Forbidden
|
|
6382
6772
|
* @response `404` `void` Not Found
|
|
6383
6773
|
*/
|
|
6384
|
-
|
|
6774
|
+
violationPushToTrff: (data: ViolationPushRequest, axiosConfig?: AxiosRequestConfig) => Promise<TaskPushResponse>;
|
|
6775
|
+
/**
|
|
6776
|
+
* @description 所需权限:vio:edit
|
|
6777
|
+
*
|
|
6778
|
+
* @tags vio
|
|
6779
|
+
* @name ViolationPushToTrffWithNewJdsbh
|
|
6780
|
+
* @summary 变更决定书编号并推送到六合一
|
|
6781
|
+
* @request POST:/accident-service/vio/violation/push-to-trff-with-new-jdsbh
|
|
6782
|
+
* @response `200` `TaskPushResponse` OK
|
|
6783
|
+
* @response `201` `void` Created
|
|
6784
|
+
* @response `401` `void` Unauthorized
|
|
6785
|
+
* @response `403` `void` Forbidden
|
|
6786
|
+
* @response `404` `void` Not Found
|
|
6787
|
+
*/
|
|
6788
|
+
violationPushToTrffWithNewJdsbh: (data: ViolationPushRequest, axiosConfig?: AxiosRequestConfig) => Promise<TaskPushResponse>;
|
|
6385
6789
|
/**
|
|
6386
6790
|
* @description 所需权限:vio:history
|
|
6387
6791
|
*
|
|
@@ -6435,6 +6839,62 @@ declare class Api {
|
|
|
6435
6839
|
* @response `404` `void` Not Found
|
|
6436
6840
|
*/
|
|
6437
6841
|
violationPushStatisticCount: (data: ViolationPushStatisticCountPayload, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
6842
|
+
/**
|
|
6843
|
+
* @description 所需权限:vio:history
|
|
6844
|
+
*
|
|
6845
|
+
* @tags vio
|
|
6846
|
+
* @name ViolationSyncGenerateQrcodeContent
|
|
6847
|
+
* @summary 生成决定书二维码信息
|
|
6848
|
+
* @request POST:/accident-service/vio/violation/sync/generate-qrcode-content
|
|
6849
|
+
* @response `200` `StringContentResponse` OK
|
|
6850
|
+
* @response `201` `void` Created
|
|
6851
|
+
* @response `401` `void` Unauthorized
|
|
6852
|
+
* @response `403` `void` Forbidden
|
|
6853
|
+
* @response `404` `void` Not Found
|
|
6854
|
+
*/
|
|
6855
|
+
violationSyncGenerateQrcodeContent: (data: ViolationFindQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<StringContentResponse>;
|
|
6856
|
+
/**
|
|
6857
|
+
* @description 所需权限:vio:history
|
|
6858
|
+
*
|
|
6859
|
+
* @tags vio
|
|
6860
|
+
* @name ViolationSyncParseQrcodeContent
|
|
6861
|
+
* @summary 解析决定书二维码信息
|
|
6862
|
+
* @request POST:/accident-service/vio/violation/sync/parse-qrcode-content
|
|
6863
|
+
* @response `200` `ViolationDTO` OK
|
|
6864
|
+
* @response `201` `void` Created
|
|
6865
|
+
* @response `401` `void` Unauthorized
|
|
6866
|
+
* @response `403` `void` Forbidden
|
|
6867
|
+
* @response `404` `void` Not Found
|
|
6868
|
+
*/
|
|
6869
|
+
violationSyncParseQrcodeContent: (data: StringContentRequest, axiosConfig?: AxiosRequestConfig) => Promise<ViolationDTO>;
|
|
6870
|
+
/**
|
|
6871
|
+
* @description 所需权限:vio:history、vio:edit (AND)
|
|
6872
|
+
*
|
|
6873
|
+
* @tags vio
|
|
6874
|
+
* @name ViolationSyncTransfer
|
|
6875
|
+
* @summary 同步简易处罚基本数据
|
|
6876
|
+
* @request POST:/accident-service/vio/violation/sync/transfer
|
|
6877
|
+
* @response `200` `void` OK
|
|
6878
|
+
* @response `201` `void` Created
|
|
6879
|
+
* @response `401` `void` Unauthorized
|
|
6880
|
+
* @response `403` `void` Forbidden
|
|
6881
|
+
* @response `404` `void` Not Found
|
|
6882
|
+
*/
|
|
6883
|
+
violationSyncTransfer: (data: ViolationProcessSyncRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
6884
|
+
/**
|
|
6885
|
+
* @description 所需权限:vio:history、vio:edit (AND)
|
|
6886
|
+
*
|
|
6887
|
+
* @tags vio
|
|
6888
|
+
* @name ViolationSyncTransferUserSignature
|
|
6889
|
+
* @summary 同步用户签名数据
|
|
6890
|
+
* @request POST:/accident-service/vio/violation/sync/transfer-user-signature
|
|
6891
|
+
* @response `200` `void` OK
|
|
6892
|
+
* @response `201` `void` Created
|
|
6893
|
+
* @response `401` `void` Unauthorized
|
|
6894
|
+
* @response `403` `void` Forbidden
|
|
6895
|
+
* @response `404` `void` Not Found
|
|
6896
|
+
*/
|
|
6897
|
+
violationSyncTransferUserSignature: (data: ViolationProcessSyncRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
6438
6898
|
};
|
|
6439
6899
|
evidence: {
|
|
6440
6900
|
/**
|
|
@@ -6465,7 +6925,7 @@ declare class Api {
|
|
|
6465
6925
|
*/
|
|
6466
6926
|
postEvidence: (data: SaveEvidenceRequest, axiosConfig?: AxiosRequestConfig) => Promise<number[]>;
|
|
6467
6927
|
/**
|
|
6468
|
-
*
|
|
6928
|
+
* No description
|
|
6469
6929
|
*
|
|
6470
6930
|
* @tags evidence
|
|
6471
6931
|
* @name GetById
|
|
@@ -6478,7 +6938,7 @@ declare class Api {
|
|
|
6478
6938
|
*/
|
|
6479
6939
|
getById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<Evidence>;
|
|
6480
6940
|
/**
|
|
6481
|
-
*
|
|
6941
|
+
* No description
|
|
6482
6942
|
*
|
|
6483
6943
|
* @tags evidence
|
|
6484
6944
|
* @name PutById
|
|
@@ -6572,6 +7032,48 @@ declare class Api {
|
|
|
6572
7032
|
* @response `403` `void` Forbidden
|
|
6573
7033
|
*/
|
|
6574
7034
|
deleteRemindById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
7035
|
+
/**
|
|
7036
|
+
* No description
|
|
7037
|
+
*
|
|
7038
|
+
* @tags evidence
|
|
7039
|
+
* @name SyncTransfer
|
|
7040
|
+
* @summary 按业务同步证据信息
|
|
7041
|
+
* @request POST:/accident-service/evidence/sync/transfer
|
|
7042
|
+
* @response `200` `void` OK
|
|
7043
|
+
* @response `201` `void` Created
|
|
7044
|
+
* @response `401` `void` Unauthorized
|
|
7045
|
+
* @response `403` `void` Forbidden
|
|
7046
|
+
* @response `404` `void` Not Found
|
|
7047
|
+
*/
|
|
7048
|
+
syncTransfer: (data: ListEvidenceRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
7049
|
+
/**
|
|
7050
|
+
* No description
|
|
7051
|
+
*
|
|
7052
|
+
* @tags evidence
|
|
7053
|
+
* @name SyncTransferResourceByResourceId
|
|
7054
|
+
* @summary 同步资源
|
|
7055
|
+
* @request POST:/accident-service/evidence/sync/transfer-resource/{resourceId}
|
|
7056
|
+
* @response `200` `void` OK
|
|
7057
|
+
* @response `201` `void` Created
|
|
7058
|
+
* @response `401` `void` Unauthorized
|
|
7059
|
+
* @response `403` `void` Forbidden
|
|
7060
|
+
* @response `404` `void` Not Found
|
|
7061
|
+
*/
|
|
7062
|
+
syncTransferResourceByResourceId: (resourceId: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
7063
|
+
/**
|
|
7064
|
+
* No description
|
|
7065
|
+
*
|
|
7066
|
+
* @tags evidence
|
|
7067
|
+
* @name SyncTransferById
|
|
7068
|
+
* @summary 按ID同步证据信息
|
|
7069
|
+
* @request POST:/accident-service/evidence/sync/{id}/transfer
|
|
7070
|
+
* @response `200` `void` OK
|
|
7071
|
+
* @response `201` `void` Created
|
|
7072
|
+
* @response `401` `void` Unauthorized
|
|
7073
|
+
* @response `403` `void` Forbidden
|
|
7074
|
+
* @response `404` `void` Not Found
|
|
7075
|
+
*/
|
|
7076
|
+
syncTransferById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
|
|
6575
7077
|
};
|
|
6576
7078
|
}
|
|
6577
7079
|
export declare const violationApi: Api;
|