szpt-driver-api 1.0.18 → 1.0.19

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
@@ -115,6 +115,10 @@ export declare class AccidentDTOReq {
115
115
  reportZjhm?: string;
116
116
  /** 事故编号 */
117
117
  sgbh?: string;
118
+ /** 事故结案备注 */
119
+ sgjabz?: string;
120
+ /** 事故结案渠道 */
121
+ sgjaqd?: string;
118
122
  /** 事故描述 */
119
123
  sgms?: string;
120
124
  /** 事故情形 */
@@ -136,6 +140,11 @@ export declare class AccidentDTOReq {
136
140
  type?: string;
137
141
  /** 当事人列表 */
138
142
  userList?: AccidentUser[];
143
+ /**
144
+ * 是否视频录制
145
+ * @example false
146
+ */
147
+ videoRecord?: boolean;
139
148
  /** 天气 */
140
149
  weather?: string;
141
150
  /** 协警 */
@@ -262,6 +271,10 @@ export declare class AccidentDTORes {
262
271
  reportZjhm: string;
263
272
  /** 事故编号 */
264
273
  sgbh: string;
274
+ /** 事故结案备注 */
275
+ sgjabz: string;
276
+ /** 事故结案渠道 */
277
+ sgjaqd: string;
265
278
  /** 事故描述 */
266
279
  sgms: string;
267
280
  /** 事故情形 */
@@ -285,6 +298,11 @@ export declare class AccidentDTORes {
285
298
  updateRecordList: string[];
286
299
  /** 当事人列表 */
287
300
  userList: AccidentUser[];
301
+ /**
302
+ * 是否视频录制
303
+ * @example false
304
+ */
305
+ videoRecord: boolean;
288
306
  /** 天气 */
289
307
  weather: string;
290
308
  /** 协警 */
@@ -508,6 +526,8 @@ export declare class AccidentQueryBean {
508
526
  sfcx?: boolean;
509
527
  /** 事故编号 */
510
528
  sgbh?: string;
529
+ /** 事故结案渠道批量查询 */
530
+ sgjaqdIn?: string[];
511
531
  /** 事故情形。支持多选 */
512
532
  sgqxIn?: string[];
513
533
  /** 事故形态。支持多选 */
@@ -595,6 +615,10 @@ export declare class AccidentSimpleDTO {
595
615
  reportZjhm: string;
596
616
  /** 事故编号 */
597
617
  sgbh: string;
618
+ /** 事故结案备注 */
619
+ sgjabz: string;
620
+ /** 事故结案渠道 */
621
+ sgjaqd: string;
598
622
  /** 事故描述 */
599
623
  sgms: string;
600
624
  /** 事故情形 */
@@ -616,6 +640,11 @@ export declare class AccidentSimpleDTO {
616
640
  type: string;
617
641
  /** 当事人列表 */
618
642
  userList: AccidentUser[];
643
+ /**
644
+ * 是否视频录制
645
+ * @example false
646
+ */
647
+ videoRecord: boolean;
619
648
  /** 天气 */
620
649
  weather: string;
621
650
  /** 调解员用户名 */
@@ -895,6 +924,291 @@ export declare class BlockUser {
895
924
  /** 添加到黑名单原因 */
896
925
  reason: string;
897
926
  }
927
+ export declare class CBViolation {
928
+ /** 处罚种类 */
929
+ cfzl?: string;
930
+ /** 车辆分类 */
931
+ clfl?: string;
932
+ /**
933
+ * 处理时间
934
+ * @format int64
935
+ */
936
+ clsj?: number;
937
+ /** 当事人 */
938
+ dsr?: string;
939
+ /** 非机动车号牌种类 */
940
+ fjdchpzl?: string;
941
+ /** 发现机关 */
942
+ fxjg?: string;
943
+ /** 号牌号码 */
944
+ hphm?: string;
945
+ /** 号牌种类 */
946
+ hpzl?: string;
947
+ /** 驾驶证号 */
948
+ jszh?: string;
949
+ /** 交通方式 */
950
+ jtfs?: string;
951
+ /** 人员分类 */
952
+ ryfl?: string;
953
+ /** 违法行为 */
954
+ wfxw?: string;
955
+ /** 证件名称 */
956
+ zjmc?: string;
957
+ /** 执勤民警 */
958
+ zqmj?: string;
959
+ }
960
+ export declare class CircuitBreakerCheckBatchRequest {
961
+ /**
962
+ * 核定载客 默认0
963
+ * @format int64
964
+ */
965
+ hdzk?: number;
966
+ /** 处罚数据 */
967
+ violations?: CBViolation[];
968
+ }
969
+ export declare class CircuitBreakerCheckRequest {
970
+ /**
971
+ * 核定载客 默认0
972
+ * @format int64
973
+ */
974
+ hdzk?: number;
975
+ /** 处罚数据 */
976
+ violation?: CBViolation;
977
+ }
978
+ export declare class CircuitBreakerCheckResult {
979
+ /**
980
+ * 熔断数值差值
981
+ * @format int64
982
+ */
983
+ breakDelta: number;
984
+ /** 熔断数值名称 */
985
+ breakDeltaName: string;
986
+ /** 熔断规则名称 */
987
+ breakRule: string;
988
+ /**
989
+ * 是否熔断
990
+ * @example false
991
+ */
992
+ circuitBreak: boolean;
993
+ /** 熔断原因 */
994
+ reason: string;
995
+ }
996
+ export declare class CircuitBreakerCheckResultBatchDetail {
997
+ /**
998
+ * 熔断数值差值
999
+ * @format int64
1000
+ */
1001
+ breakDelta: number;
1002
+ /** 熔断数值名称 */
1003
+ breakDeltaName: string;
1004
+ /** 熔断规则名称 */
1005
+ breakRule: string;
1006
+ /**
1007
+ * 是否熔断
1008
+ * @example false
1009
+ */
1010
+ circuitBreak: boolean;
1011
+ /** 熔断原因 */
1012
+ reason: string;
1013
+ /** 触发规则 以wfxw为key */
1014
+ rules: Record<string, any>;
1015
+ }
1016
+ export declare class CircuitBreakerCheckResultDetail {
1017
+ /**
1018
+ * 熔断数值差值
1019
+ * @format int64
1020
+ */
1021
+ breakDelta: number;
1022
+ /** 熔断数值名称 */
1023
+ breakDeltaName: string;
1024
+ /** 熔断规则名称 */
1025
+ breakRule: string;
1026
+ /**
1027
+ * 是否熔断
1028
+ * @example false
1029
+ */
1030
+ circuitBreak: boolean;
1031
+ /** 熔断原因 */
1032
+ reason: string;
1033
+ /** 触发规则 */
1034
+ rules: CircuitBreakerRuleResult[];
1035
+ }
1036
+ export declare class CircuitBreakerCompareBaseValue {
1037
+ /**
1038
+ * 基准值
1039
+ * @format int64
1040
+ */
1041
+ baseValue: number;
1042
+ /**
1043
+ * 是否熔断
1044
+ * @example false
1045
+ */
1046
+ circuitBreak: boolean;
1047
+ /** 比较 */
1048
+ compare: "eq" | "gte" | "lte";
1049
+ /** 名称 */
1050
+ name: string;
1051
+ /**
1052
+ * 实际值
1053
+ * @format int64
1054
+ */
1055
+ value: number;
1056
+ }
1057
+ export declare class CircuitBreakerRuleResult {
1058
+ /**
1059
+ * 是否过滤车辆类型
1060
+ * @example false
1061
+ */
1062
+ cllxFilter: boolean;
1063
+ /** 车辆类型大类(交通方式) 例如 K H T 等 */
1064
+ cllxGroup: string;
1065
+ /**
1066
+ * 是否过滤车辆分类(交通方式)分组
1067
+ * @example false
1068
+ */
1069
+ cllxGroupFilter: boolean;
1070
+ /**
1071
+ * 是否包含车辆分类(交通方式)分组
1072
+ * @example false
1073
+ */
1074
+ cllxGroupInclude: boolean;
1075
+ /**
1076
+ * 是否包含车辆类型
1077
+ * @example false
1078
+ */
1079
+ cllxInclude: boolean;
1080
+ /** 车辆类型列表 */
1081
+ cllxList: string[];
1082
+ /** 规则比较结果 */
1083
+ compareResults: CircuitBreakerCompareBaseValue[];
1084
+ /**
1085
+ * 创建时间
1086
+ * @format int64
1087
+ */
1088
+ createTime: number;
1089
+ /** 创建人用户名 */
1090
+ createUser: string;
1091
+ /**
1092
+ * 是否已删除
1093
+ * @example false
1094
+ */
1095
+ deleted: boolean;
1096
+ /** 规则描述 */
1097
+ description: string;
1098
+ /** 数据签名 */
1099
+ digest: EntityDigest;
1100
+ /**
1101
+ * 是否禁用
1102
+ * @example false
1103
+ */
1104
+ disabled: boolean;
1105
+ /**
1106
+ * 修改时间
1107
+ * @format int64
1108
+ */
1109
+ editTime: number;
1110
+ /** 修改人用户名 */
1111
+ editUser: string;
1112
+ /**
1113
+ * 是否过滤号牌种类
1114
+ * @example false
1115
+ */
1116
+ hpzlFilter: boolean;
1117
+ /**
1118
+ * 是否包含号牌种类
1119
+ * @example false
1120
+ */
1121
+ hpzlInclude: boolean;
1122
+ /** 号牌种类列表 */
1123
+ hpzlList: string[];
1124
+ /**
1125
+ * 主键
1126
+ * @format int64
1127
+ */
1128
+ id: number;
1129
+ /** ISP API */
1130
+ ispApis: string[];
1131
+ /**
1132
+ * 是否限制同一大队
1133
+ * @example false
1134
+ */
1135
+ limitSameDadui: boolean;
1136
+ /**
1137
+ * 是否限制同一当事人
1138
+ * @example false
1139
+ */
1140
+ limitSameDsr: boolean;
1141
+ /**
1142
+ * 是否限制同一民警
1143
+ * @example false
1144
+ */
1145
+ limitSamePolice: boolean;
1146
+ /**
1147
+ * 是否限制同一车辆
1148
+ * @example false
1149
+ */
1150
+ limitSameVeh: boolean;
1151
+ /**
1152
+ * 是否限制同一违法行为
1153
+ * @example false
1154
+ */
1155
+ limitSameWfxw: boolean;
1156
+ /** 限制时间范围 */
1157
+ limitTimeRange: "daily" | "monthly";
1158
+ /** 规则名称 */
1159
+ name: string;
1160
+ /** 基础统计值(用于同一事故多个处罚) */
1161
+ plusValues: Record<string, number>;
1162
+ /**
1163
+ * 是否过滤人员分类
1164
+ * @example false
1165
+ */
1166
+ ryflFilter: boolean;
1167
+ /**
1168
+ * 是否包含人员分类
1169
+ * @example false
1170
+ */
1171
+ ryflInclude: boolean;
1172
+ /** 人员分类列表 */
1173
+ ryflList: string[];
1174
+ /**
1175
+ * 是否过滤证件名称
1176
+ * @example false
1177
+ */
1178
+ sfzmmcFilter: boolean;
1179
+ /**
1180
+ * 是否包含证件名称
1181
+ * @example false
1182
+ */
1183
+ sfzmmcInclude: boolean;
1184
+ /** 证件名称列表 */
1185
+ sfzmmcList: string[];
1186
+ /** 统计结果比对 */
1187
+ sqlResults: VioCircuitBreakerSqlSingleDTORes[];
1188
+ /**
1189
+ * 是否过滤违法行为
1190
+ * @example false
1191
+ */
1192
+ wfxwFilter: boolean;
1193
+ /**
1194
+ * 是否包含违法行为
1195
+ * @example false
1196
+ */
1197
+ wfxwInclude: boolean;
1198
+ /** 违法行为列表 */
1199
+ wfxwList: string[];
1200
+ /**
1201
+ * 是否用作工作量统计
1202
+ * @example false
1203
+ */
1204
+ workload: boolean;
1205
+ }
1206
+ export declare class DebugPoliceDailyWorkloadBean {
1207
+ /** 部门代码 */
1208
+ department?: string;
1209
+ /** 执勤民警 */
1210
+ zqmj?: string;
1211
+ }
898
1212
  export declare class DiscardAccidentQueryBean {
899
1213
  /** 事故地址查询。支持模糊查询 */
900
1214
  address?: string;
@@ -1029,7 +1343,7 @@ export declare class EvidenceNonstandardRemindDTOReq {
1029
1343
  /** 业务编号 */
1030
1344
  code?: string;
1031
1345
  /** 业务类型 */
1032
- codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1346
+ codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1033
1347
  /** 发送内容 */
1034
1348
  content?: string;
1035
1349
  /**
@@ -1074,7 +1388,7 @@ export declare class EvidenceNonstandardRemindDTORes {
1074
1388
  /** 业务编号 */
1075
1389
  code: string;
1076
1390
  /** 业务类型 */
1077
- codeType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1391
+ codeType: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1078
1392
  /** 发送内容 */
1079
1393
  content: string;
1080
1394
  /**
@@ -1199,7 +1513,7 @@ export declare class NoticeInfoRequest {
1199
1513
  /** 业务编号 */
1200
1514
  code?: string;
1201
1515
  /** 业务类型, ACCIDENT 事故, SURVEIL 违停, VIOLATION 简易处罚 */
1202
- codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1516
+ codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
1203
1517
  /** 通知内容 */
1204
1518
  content?: string;
1205
1519
  /** 证据编号 */
@@ -1267,6 +1581,11 @@ export declare class PageResultUserAccidentCount {
1267
1581
  /** @format int64 */
1268
1582
  total: number;
1269
1583
  }
1584
+ export declare class PageResultViolationCircuitBreakerDTO {
1585
+ list: ViolationCircuitBreakerDTORes[];
1586
+ /** @format int64 */
1587
+ total: number;
1588
+ }
1270
1589
  export declare class PointReq {
1271
1590
  /** @format double */
1272
1591
  latitude?: number;
@@ -1283,6 +1602,43 @@ export declare class PointRes {
1283
1602
  /** @format double */
1284
1603
  radius: number;
1285
1604
  }
1605
+ export declare class PoliceDailyWorkload {
1606
+ /**
1607
+ * 农机车处罚(包括简易 强措 通知书)
1608
+ * @format int64
1609
+ */
1610
+ farmVeh: number;
1611
+ /**
1612
+ * 境外人员处罚(包括简易(非3019) 强措 通知书)
1613
+ * @format int64
1614
+ */
1615
+ outlander: number;
1616
+ /**
1617
+ * 简易处罚总量(非3019)
1618
+ * @format int64
1619
+ */
1620
+ "vioNot3019Total": number;
1621
+ /**
1622
+ * 简易处罚警告量(非3019)
1623
+ * @format int64
1624
+ */
1625
+ "vioNot3019Warn": number;
1626
+ }
1627
+ export declare class PoliceDailyWorkloadConfig {
1628
+ /** 工作量变量名 */
1629
+ param: string;
1630
+ /** 简易处罚总量(非3019) */
1631
+ rules: PoliceDailyWorkloadRelationRule[];
1632
+ }
1633
+ export declare class PoliceDailyWorkloadRelationRule {
1634
+ /** ISP返回字段名称 */
1635
+ paramName: string;
1636
+ /**
1637
+ * 关联
1638
+ * @format int64
1639
+ */
1640
+ ruleId: number;
1641
+ }
1286
1642
  export declare class RenderProcessDataRequest {
1287
1643
  department: string;
1288
1644
  params?: any;
@@ -1299,52 +1655,447 @@ export declare class Report {
1299
1655
  /** 模版 */
1300
1656
  template: string;
1301
1657
  /**
1302
- * 生成时间
1658
+ * 生成时间
1659
+ * @format int64
1660
+ */
1661
+ time: number;
1662
+ }
1663
+ export declare class Resource {
1664
+ description: string;
1665
+ /** @format binary */
1666
+ file: File;
1667
+ filename: string;
1668
+ inputStream: InputStream;
1669
+ open: boolean;
1670
+ readable: boolean;
1671
+ /** @format uri */
1672
+ uri: string;
1673
+ /** @format url */
1674
+ url: string;
1675
+ }
1676
+ export declare class SaveEvidenceRequest {
1677
+ /** 文书编号 */
1678
+ code?: string;
1679
+ /** 文书类型 */
1680
+ codeType?: string;
1681
+ /** 证据列表。相同内容(content)或标识(key)的证据将被覆盖 */
1682
+ evidenceList?: Evidence[];
1683
+ /** 证据上传人 */
1684
+ user?: string;
1685
+ }
1686
+ /**
1687
+ * 用户事故数量统计
1688
+ */
1689
+ export declare class UserAccidentCount {
1690
+ /**
1691
+ * 事故记录数
1692
+ * @format int32
1693
+ */
1694
+ counts: number;
1695
+ /** 姓名 */
1696
+ name: string;
1697
+ /** 手机号码 */
1698
+ phone: string;
1699
+ /** 证件号码 */
1700
+ zjhm: string;
1701
+ }
1702
+ export declare class View {
1703
+ contentType: string;
1704
+ }
1705
+ export declare class VioCircuitBreakerSqlSingleDTOReq {
1706
+ /** 比较 */
1707
+ compare: "eq" | "gte" | "lte";
1708
+ /**
1709
+ * 数值限制
1710
+ * @format int64
1711
+ */
1712
+ count: number;
1713
+ /**
1714
+ * 采用外部输入作为基准值,参数名同paramName
1715
+ * @example false
1716
+ */
1717
+ inputReferValue: boolean;
1718
+ /** 名称 */
1719
+ name: string;
1720
+ /** ISP返回字段名称 */
1721
+ paramName: string;
1722
+ /** 工作量统计对应字段 */
1723
+ workloadParamName?: string;
1724
+ }
1725
+ export declare class VioCircuitBreakerSqlSingleDTORes {
1726
+ /** 比较 */
1727
+ compare: "eq" | "gte" | "lte";
1728
+ /**
1729
+ * 数值限制
1730
+ * @format int64
1731
+ */
1732
+ count: number;
1733
+ /**
1734
+ * 采用外部输入作为基准值,参数名同paramName
1735
+ * @example false
1736
+ */
1737
+ inputReferValue: boolean;
1738
+ /** 名称 */
1739
+ name: string;
1740
+ /** ISP返回字段名称 */
1741
+ paramName: string;
1742
+ /** 工作量统计对应字段 */
1743
+ workloadParamName: string;
1744
+ }
1745
+ export declare class ViolationCircuitBreakerDTOReq {
1746
+ /**
1747
+ * 是否过滤车辆类型
1748
+ * @example false
1749
+ */
1750
+ cllxFilter: boolean;
1751
+ /** 车辆类型大类(交通方式) 例如 K H T 等 */
1752
+ cllxGroup?: string;
1753
+ /**
1754
+ * 是否过滤车辆分类(交通方式)分组
1755
+ * @example false
1756
+ */
1757
+ cllxGroupFilter: boolean;
1758
+ /**
1759
+ * 是否包含车辆分类(交通方式)分组
1760
+ * @example false
1761
+ */
1762
+ cllxGroupInclude: boolean;
1763
+ /**
1764
+ * 是否包含车辆类型
1765
+ * @example false
1766
+ */
1767
+ cllxInclude: boolean;
1768
+ /** 车辆类型列表 */
1769
+ cllxList?: string[];
1770
+ /**
1771
+ * 创建时间
1772
+ * @format int64
1773
+ */
1774
+ createTime?: number;
1775
+ /** 创建人用户名 */
1776
+ createUser?: string;
1777
+ /**
1778
+ * 是否已删除
1779
+ * @example false
1780
+ */
1781
+ deleted?: boolean;
1782
+ /** 规则描述 */
1783
+ description: string;
1784
+ /** 数据签名 */
1785
+ digest?: EntityDigest;
1786
+ /**
1787
+ * 是否禁用
1788
+ * @example false
1789
+ */
1790
+ disabled: boolean;
1791
+ /**
1792
+ * 修改时间
1793
+ * @format int64
1794
+ */
1795
+ editTime?: number;
1796
+ /** 修改人用户名 */
1797
+ editUser?: string;
1798
+ /**
1799
+ * 是否过滤号牌种类
1800
+ * @example false
1801
+ */
1802
+ hpzlFilter: boolean;
1803
+ /**
1804
+ * 是否包含号牌种类
1805
+ * @example false
1806
+ */
1807
+ hpzlInclude: boolean;
1808
+ /** 号牌种类列表 */
1809
+ hpzlList?: string[];
1810
+ /**
1811
+ * 主键
1812
+ * @format int64
1813
+ */
1814
+ id?: number;
1815
+ /** ISP API */
1816
+ ispApis: string[];
1817
+ /**
1818
+ * 是否限制同一大队
1819
+ * @example false
1820
+ */
1821
+ limitSameDadui: boolean;
1822
+ /**
1823
+ * 是否限制同一当事人
1824
+ * @example false
1825
+ */
1826
+ limitSameDsr: boolean;
1827
+ /**
1828
+ * 是否限制同一民警
1829
+ * @example false
1830
+ */
1831
+ limitSamePolice: boolean;
1832
+ /**
1833
+ * 是否限制同一车辆
1834
+ * @example false
1835
+ */
1836
+ limitSameVeh: boolean;
1837
+ /**
1838
+ * 是否限制同一违法行为
1839
+ * @example false
1840
+ */
1841
+ limitSameWfxw: boolean;
1842
+ /** 限制时间范围 */
1843
+ limitTimeRange: "daily" | "monthly";
1844
+ /** 规则名称 */
1845
+ name: string;
1846
+ /**
1847
+ * 是否过滤人员分类
1848
+ * @example false
1849
+ */
1850
+ ryflFilter: boolean;
1851
+ /**
1852
+ * 是否包含人员分类
1853
+ * @example false
1854
+ */
1855
+ ryflInclude: boolean;
1856
+ /** 人员分类列表 */
1857
+ ryflList?: string[];
1858
+ /**
1859
+ * 是否过滤证件名称
1860
+ * @example false
1861
+ */
1862
+ sfzmmcFilter: boolean;
1863
+ /**
1864
+ * 是否包含证件名称
1865
+ * @example false
1866
+ */
1867
+ sfzmmcInclude: boolean;
1868
+ /** 证件名称列表 */
1869
+ sfzmmcList?: string[];
1870
+ /** 统计结果比对 */
1871
+ sqlResults: VioCircuitBreakerSqlSingleDTOReq[];
1872
+ /**
1873
+ * 是否过滤违法行为
1874
+ * @example false
1875
+ */
1876
+ wfxwFilter: boolean;
1877
+ /**
1878
+ * 是否包含违法行为
1879
+ * @example false
1880
+ */
1881
+ wfxwInclude: boolean;
1882
+ /** 违法行为列表 */
1883
+ wfxwList?: string[];
1884
+ /**
1885
+ * 是否用作工作量统计
1886
+ * @example false
1887
+ */
1888
+ workload: boolean;
1889
+ }
1890
+ export declare class ViolationCircuitBreakerDTORes {
1891
+ /**
1892
+ * 是否过滤车辆类型
1893
+ * @example false
1894
+ */
1895
+ cllxFilter: boolean;
1896
+ /** 车辆类型大类(交通方式) 例如 K H T 等 */
1897
+ cllxGroup: string;
1898
+ /**
1899
+ * 是否过滤车辆分类(交通方式)分组
1900
+ * @example false
1901
+ */
1902
+ cllxGroupFilter: boolean;
1903
+ /**
1904
+ * 是否包含车辆分类(交通方式)分组
1905
+ * @example false
1906
+ */
1907
+ cllxGroupInclude: boolean;
1908
+ /**
1909
+ * 是否包含车辆类型
1910
+ * @example false
1911
+ */
1912
+ cllxInclude: boolean;
1913
+ /** 车辆类型列表 */
1914
+ cllxList: string[];
1915
+ /**
1916
+ * 创建时间
1917
+ * @format int64
1918
+ */
1919
+ createTime: number;
1920
+ /** 创建人用户名 */
1921
+ createUser: string;
1922
+ /**
1923
+ * 是否已删除
1924
+ * @example false
1925
+ */
1926
+ deleted: boolean;
1927
+ /** 规则描述 */
1928
+ description: string;
1929
+ /** 数据签名 */
1930
+ digest: EntityDigest;
1931
+ /**
1932
+ * 是否禁用
1933
+ * @example false
1934
+ */
1935
+ disabled: boolean;
1936
+ /**
1937
+ * 修改时间
1938
+ * @format int64
1939
+ */
1940
+ editTime: number;
1941
+ /** 修改人用户名 */
1942
+ editUser: string;
1943
+ /**
1944
+ * 是否过滤号牌种类
1945
+ * @example false
1946
+ */
1947
+ hpzlFilter: boolean;
1948
+ /**
1949
+ * 是否包含号牌种类
1950
+ * @example false
1951
+ */
1952
+ hpzlInclude: boolean;
1953
+ /** 号牌种类列表 */
1954
+ hpzlList: string[];
1955
+ /**
1956
+ * 主键
1303
1957
  * @format int64
1304
1958
  */
1305
- time: number;
1959
+ id: number;
1960
+ /** ISP API */
1961
+ ispApis: string[];
1962
+ /**
1963
+ * 是否限制同一大队
1964
+ * @example false
1965
+ */
1966
+ limitSameDadui: boolean;
1967
+ /**
1968
+ * 是否限制同一当事人
1969
+ * @example false
1970
+ */
1971
+ limitSameDsr: boolean;
1972
+ /**
1973
+ * 是否限制同一民警
1974
+ * @example false
1975
+ */
1976
+ limitSamePolice: boolean;
1977
+ /**
1978
+ * 是否限制同一车辆
1979
+ * @example false
1980
+ */
1981
+ limitSameVeh: boolean;
1982
+ /**
1983
+ * 是否限制同一违法行为
1984
+ * @example false
1985
+ */
1986
+ limitSameWfxw: boolean;
1987
+ /** 限制时间范围 */
1988
+ limitTimeRange: "daily" | "monthly";
1989
+ /** 规则名称 */
1990
+ name: string;
1991
+ /**
1992
+ * 是否过滤人员分类
1993
+ * @example false
1994
+ */
1995
+ ryflFilter: boolean;
1996
+ /**
1997
+ * 是否包含人员分类
1998
+ * @example false
1999
+ */
2000
+ ryflInclude: boolean;
2001
+ /** 人员分类列表 */
2002
+ ryflList: string[];
2003
+ /**
2004
+ * 是否过滤证件名称
2005
+ * @example false
2006
+ */
2007
+ sfzmmcFilter: boolean;
2008
+ /**
2009
+ * 是否包含证件名称
2010
+ * @example false
2011
+ */
2012
+ sfzmmcInclude: boolean;
2013
+ /** 证件名称列表 */
2014
+ sfzmmcList: string[];
2015
+ /** 统计结果比对 */
2016
+ sqlResults: VioCircuitBreakerSqlSingleDTORes[];
2017
+ /**
2018
+ * 是否过滤违法行为
2019
+ * @example false
2020
+ */
2021
+ wfxwFilter: boolean;
2022
+ /**
2023
+ * 是否包含违法行为
2024
+ * @example false
2025
+ */
2026
+ wfxwInclude: boolean;
2027
+ /** 违法行为列表 */
2028
+ wfxwList: string[];
2029
+ /**
2030
+ * 是否用作工作量统计
2031
+ * @example false
2032
+ */
2033
+ workload: boolean;
1306
2034
  }
1307
- export declare class Resource {
1308
- description: string;
1309
- /** @format binary */
1310
- file: File;
1311
- filename: string;
1312
- inputStream: InputStream;
1313
- open: boolean;
1314
- readable: boolean;
1315
- /** @format uri */
1316
- uri: string;
1317
- /** @format url */
1318
- url: string;
2035
+ export declare class ViolationCircuitBreakerImportResult {
2036
+ /** 失败列表 */
2037
+ fail: ViolationCircuitBreakerImportResultFail[];
2038
+ /** 成功列表 */
2039
+ success: string[];
1319
2040
  }
1320
- export declare class SaveEvidenceRequest {
1321
- /** 文书编号 */
1322
- code?: string;
1323
- /** 文书类型 */
1324
- codeType?: string;
1325
- /** 证据列表。相同内容(content)或标识(key)的证据将被覆盖 */
1326
- evidenceList?: Evidence[];
1327
- /** 证据上传人 */
1328
- user?: string;
2041
+ export declare class ViolationCircuitBreakerImportResultFail {
2042
+ /** 名称 */
2043
+ name: string;
2044
+ /** 原因 */
2045
+ reason: string;
1329
2046
  }
1330
- /**
1331
- * 用户事故数量统计
1332
- */
1333
- export declare class UserAccidentCount {
2047
+ export declare class ViolationCircuitBreakerQueryBean {
1334
2048
  /**
1335
- * 事故记录数
1336
- * @format int32
2049
+ * 是否已删除
2050
+ * @example false
1337
2051
  */
1338
- counts: number;
1339
- /** 姓名 */
1340
- name: string;
1341
- /** 手机号码 */
1342
- phone: string;
1343
- /** 证件号码 */
1344
- zjhm: string;
1345
- }
1346
- export declare class View {
1347
- contentType: string;
2052
+ deleted?: boolean;
2053
+ /**
2054
+ * 是否禁用
2055
+ * @example false
2056
+ */
2057
+ disabled?: boolean;
2058
+ /** 过滤的车辆类型 */
2059
+ filterCllx?: string;
2060
+ /** 过滤的车辆类型大类 */
2061
+ filterCllxGroup?: string;
2062
+ /** 过滤的号牌种类 */
2063
+ filterHpzl?: string;
2064
+ /** 过滤的人员分类 */
2065
+ filterRyfl?: string;
2066
+ /** 过滤的证件名称 */
2067
+ filterSfzmmc?: string;
2068
+ /** 过滤的违法行为 */
2069
+ filterWfxw?: string;
2070
+ /**
2071
+ * 主键
2072
+ * @format int64
2073
+ */
2074
+ id?: number;
2075
+ /** 主键 */
2076
+ ids?: number[];
2077
+ /** 规则名称模糊查询 */
2078
+ nameLike?: string;
2079
+ orderBy?: string[];
2080
+ /** @format int32 */
2081
+ pageIndex?: number;
2082
+ /** @format int32 */
2083
+ pageSize?: number;
2084
+ /** 业务车辆类型(交通方式) */
2085
+ violationCllx?: string;
2086
+ /** 业务号牌种类 */
2087
+ violationHpzl?: string;
2088
+ /** 业务人员分类 */
2089
+ violationRyfl?: string;
2090
+ /** 业务证件名称 */
2091
+ violationSfzmmc?: string;
2092
+ /** 业务违法行为 */
2093
+ violationWfxw?: string;
2094
+ /**
2095
+ * 是否用于工作量统计
2096
+ * @example false
2097
+ */
2098
+ workload?: boolean;
1348
2099
  }
1349
2100
  export declare class AccidentParams {
1350
2101
  /** 事故地址查询。支持模糊查询 */
@@ -1415,6 +2166,8 @@ export declare class AccidentParams {
1415
2166
  sfcx?: boolean;
1416
2167
  /** 事故编号 */
1417
2168
  sgbh?: string;
2169
+ /** 事故结案渠道批量查询 */
2170
+ sgjaqdIn?: string[];
1418
2171
  /** 事故情形。支持多选 */
1419
2172
  sgqxIn?: string[];
1420
2173
  /** 事故形态。支持多选 */
@@ -1597,6 +2350,8 @@ export declare class ForInsuranceUserParams {
1597
2350
  sfcx?: boolean;
1598
2351
  /** 事故编号 */
1599
2352
  sgbh?: string;
2353
+ /** 事故结案渠道批量查询 */
2354
+ sgjaqdIn?: string[];
1600
2355
  /** 事故情形。支持多选 */
1601
2356
  sgqxIn?: string[];
1602
2357
  /** 事故形态。支持多选 */
@@ -1693,6 +2448,8 @@ export declare class HeatmapParams {
1693
2448
  sfcx?: boolean;
1694
2449
  /** 事故编号 */
1695
2450
  sgbh?: string;
2451
+ /** 事故结案渠道批量查询 */
2452
+ sgjaqdIn?: string[];
1696
2453
  /** 事故情形。支持多选 */
1697
2454
  sgqxIn?: string[];
1698
2455
  /** 事故形态。支持多选 */
@@ -1793,6 +2550,8 @@ export declare class SimpleParams {
1793
2550
  sfcx?: boolean;
1794
2551
  /** 事故编号 */
1795
2552
  sgbh?: string;
2553
+ /** 事故结案渠道批量查询 */
2554
+ sgjaqdIn?: string[];
1796
2555
  /** 事故情形。支持多选 */
1797
2556
  sgqxIn?: string[];
1798
2557
  /** 事故形态。支持多选 */
@@ -2034,9 +2793,16 @@ export declare class GetBlockUserParams {
2034
2793
  export declare class DeleteHardByIdParams {
2035
2794
  id: string;
2036
2795
  }
2796
+ export declare class CircuitBreakerImportJsonPayload {
2797
+ /**
2798
+ * file
2799
+ * @format binary
2800
+ */
2801
+ file: File;
2802
+ }
2037
2803
  export declare class GetEvidenceParams {
2038
2804
  /** codeType */
2039
- codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
2805
+ codeType?: "ACCIDENT" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
2040
2806
  /** code */
2041
2807
  code?: string;
2042
2808
  }
@@ -2611,6 +3377,266 @@ declare class Api {
2611
3377
  */
2612
3378
  putRecoverById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2613
3379
  };
3380
+ vio: {
3381
+ /**
3382
+ * No description
3383
+ *
3384
+ * @tags vio
3385
+ * @name CircuitBreakerConfigDailyWorkload
3386
+ * @summary 新增/修改民警当日熔断相关工作量统计配置
3387
+ * @request POST:/accident-service/vio/circuit-breaker/config/daily/workload
3388
+ * @response `200` `void` OK
3389
+ * @response `201` `void` Created
3390
+ * @response `401` `void` Unauthorized
3391
+ * @response `403` `void` Forbidden
3392
+ * @response `404` `void` Not Found
3393
+ */
3394
+ circuitBreakerConfigDailyWorkload: (data: PoliceDailyWorkloadConfig, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3395
+ /**
3396
+ * No description
3397
+ *
3398
+ * @tags vio
3399
+ * @name CircuitBreakerConfigDailyWorkloadList
3400
+ * @summary 列表获取民警当日熔断相关工作量统计配置
3401
+ * @request GET:/accident-service/vio/circuit-breaker/config/daily/workload/list
3402
+ * @response `200` `(PoliceDailyWorkloadConfig)[]` OK
3403
+ * @response `401` `void` Unauthorized
3404
+ * @response `403` `void` Forbidden
3405
+ * @response `404` `void` Not Found
3406
+ */
3407
+ circuitBreakerConfigDailyWorkloadList: (axiosConfig?: AxiosRequestConfig) => Promise<PoliceDailyWorkloadConfig[]>;
3408
+ /**
3409
+ * No description
3410
+ *
3411
+ * @tags vio
3412
+ * @name GetCircuitBreakerConfigDailyWorkloadByParam
3413
+ * @summary 获取民警当日熔断相关工作量统计配置
3414
+ * @request GET:/accident-service/vio/circuit-breaker/config/daily/workload/{param}
3415
+ * @response `200` `PoliceDailyWorkloadConfig` OK
3416
+ * @response `401` `void` Unauthorized
3417
+ * @response `403` `void` Forbidden
3418
+ * @response `404` `void` Not Found
3419
+ */
3420
+ getCircuitBreakerConfigDailyWorkloadByParam: (param: string, axiosConfig?: AxiosRequestConfig) => Promise<PoliceDailyWorkloadConfig>;
3421
+ /**
3422
+ * No description
3423
+ *
3424
+ * @tags vio
3425
+ * @name DeleteCircuitBreakerConfigDailyWorkloadByParam
3426
+ * @summary 删除民警当日熔断相关工作量统计配置
3427
+ * @request DELETE:/accident-service/vio/circuit-breaker/config/daily/workload/{param}
3428
+ * @response `200` `void` OK
3429
+ * @response `204` `void` No Content
3430
+ * @response `401` `void` Unauthorized
3431
+ * @response `403` `void` Forbidden
3432
+ */
3433
+ deleteCircuitBreakerConfigDailyWorkloadByParam: (param: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3434
+ /**
3435
+ * No description
3436
+ *
3437
+ * @tags vio
3438
+ * @name CircuitBreakerDailyWorkload
3439
+ * @summary 民警当日熔断相关工作量统计
3440
+ * @request GET:/accident-service/vio/circuit-breaker/daily/workload
3441
+ * @response `200` `PoliceDailyWorkload` OK
3442
+ * @response `401` `void` Unauthorized
3443
+ * @response `403` `void` Forbidden
3444
+ * @response `404` `void` Not Found
3445
+ */
3446
+ circuitBreakerDailyWorkload: (axiosConfig?: AxiosRequestConfig) => Promise<PoliceDailyWorkload>;
3447
+ /**
3448
+ * No description
3449
+ *
3450
+ * @tags vio
3451
+ * @name CircuitBreakerDebugDailyWorkload
3452
+ * @summary 调试民警当日熔断相关工作量统计
3453
+ * @request POST:/accident-service/vio/circuit-breaker/debug/daily/workload
3454
+ * @response `200` `PoliceDailyWorkload` OK
3455
+ * @response `201` `void` Created
3456
+ * @response `401` `void` Unauthorized
3457
+ * @response `403` `void` Forbidden
3458
+ * @response `404` `void` Not Found
3459
+ */
3460
+ circuitBreakerDebugDailyWorkload: (data: DebugPoliceDailyWorkloadBean, axiosConfig?: AxiosRequestConfig) => Promise<PoliceDailyWorkload>;
3461
+ /**
3462
+ * @description 调试处罚触及的熔断详细数据,除了返回是否熔断以外,会对所有符合规则的数据都向ISP进行统计请求,并且在每条规则中展示是否有触发规则熔断
3463
+ *
3464
+ * @tags vio
3465
+ * @name CircuitBreakerDebugViolationBatchDetail
3466
+ * @summary 调试执法简易处罚触及的熔断详细数据
3467
+ * @request POST:/accident-service/vio/circuit-breaker/debug/violation/batch/detail
3468
+ * @response `200` `CircuitBreakerCheckResultBatchDetail` OK
3469
+ * @response `201` `void` Created
3470
+ * @response `401` `void` Unauthorized
3471
+ * @response `403` `void` Forbidden
3472
+ * @response `404` `void` Not Found
3473
+ */
3474
+ circuitBreakerDebugViolationBatchDetail: (data: CircuitBreakerCheckBatchRequest, axiosConfig?: AxiosRequestConfig) => Promise<CircuitBreakerCheckResultBatchDetail>;
3475
+ /**
3476
+ * @description 调试处罚触及的熔断详细数据,除了返回是否熔断以外,会对所有符合规则的数据都向ISP进行统计请求,并且在每条规则中展示是否有触发规则熔断
3477
+ *
3478
+ * @tags vio
3479
+ * @name CircuitBreakerDebugViolationDetail
3480
+ * @summary 调试处罚触及的熔断详细数据
3481
+ * @request POST:/accident-service/vio/circuit-breaker/debug/violation/detail
3482
+ * @response `200` `CircuitBreakerCheckResultDetail` OK
3483
+ * @response `201` `void` Created
3484
+ * @response `401` `void` Unauthorized
3485
+ * @response `403` `void` Forbidden
3486
+ * @response `404` `void` Not Found
3487
+ */
3488
+ circuitBreakerDebugViolationDetail: (data: CircuitBreakerCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<CircuitBreakerCheckResultDetail>;
3489
+ /**
3490
+ * No description
3491
+ *
3492
+ * @tags vio
3493
+ * @name CircuitBreakerDisableById
3494
+ * @summary 禁用执法熔断规则
3495
+ * @request GET:/accident-service/vio/circuit-breaker/disable/{id}
3496
+ * @response `200` `ViolationCircuitBreakerDTORes` OK
3497
+ * @response `401` `void` Unauthorized
3498
+ * @response `403` `void` Forbidden
3499
+ * @response `404` `void` Not Found
3500
+ */
3501
+ circuitBreakerDisableById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<ViolationCircuitBreakerDTORes>;
3502
+ /**
3503
+ * No description
3504
+ *
3505
+ * @tags vio
3506
+ * @name CircuitBreakerEnableById
3507
+ * @summary 启用执法熔断规则
3508
+ * @request GET:/accident-service/vio/circuit-breaker/enable/{id}
3509
+ * @response `200` `ViolationCircuitBreakerDTORes` OK
3510
+ * @response `401` `void` Unauthorized
3511
+ * @response `403` `void` Forbidden
3512
+ * @response `404` `void` Not Found
3513
+ */
3514
+ circuitBreakerEnableById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<ViolationCircuitBreakerDTORes>;
3515
+ /**
3516
+ * No description
3517
+ *
3518
+ * @tags vio
3519
+ * @name CircuitBreakerImportJson
3520
+ * @summary 导入json
3521
+ * @request POST:/accident-service/vio/circuit-breaker/import-json
3522
+ * @response `200` `ViolationCircuitBreakerImportResult` OK
3523
+ * @response `201` `void` Created
3524
+ * @response `401` `void` Unauthorized
3525
+ * @response `403` `void` Forbidden
3526
+ * @response `404` `void` Not Found
3527
+ */
3528
+ circuitBreakerImportJson: (data: CircuitBreakerImportJsonPayload, axiosConfig?: AxiosRequestConfig) => Promise<ViolationCircuitBreakerImportResult>;
3529
+ /**
3530
+ * No description
3531
+ *
3532
+ * @tags vio
3533
+ * @name CircuitBreakerList
3534
+ * @summary 列表查询
3535
+ * @request POST:/accident-service/vio/circuit-breaker/list
3536
+ * @response `200` `(ViolationCircuitBreakerDTORes)[]` OK
3537
+ * @response `201` `void` Created
3538
+ * @response `401` `void` Unauthorized
3539
+ * @response `403` `void` Forbidden
3540
+ * @response `404` `void` Not Found
3541
+ */
3542
+ circuitBreakerList: (data: ViolationCircuitBreakerQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<ViolationCircuitBreakerDTORes[]>;
3543
+ /**
3544
+ * No description
3545
+ *
3546
+ * @tags vio
3547
+ * @name CircuitBreakerPage
3548
+ * @summary 分页查询
3549
+ * @request POST:/accident-service/vio/circuit-breaker/page
3550
+ * @response `200` `PageResultViolationCircuitBreakerDTO` OK
3551
+ * @response `201` `void` Created
3552
+ * @response `401` `void` Unauthorized
3553
+ * @response `403` `void` Forbidden
3554
+ * @response `404` `void` Not Found
3555
+ */
3556
+ circuitBreakerPage: (data: ViolationCircuitBreakerQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultViolationCircuitBreakerDTO>;
3557
+ /**
3558
+ * No description
3559
+ *
3560
+ * @tags vio
3561
+ * @name CircuitBreakerSave
3562
+ * @summary 新增/修改
3563
+ * @request POST:/accident-service/vio/circuit-breaker/save
3564
+ * @response `200` `number` OK
3565
+ * @response `201` `void` Created
3566
+ * @response `401` `void` Unauthorized
3567
+ * @response `403` `void` Forbidden
3568
+ * @response `404` `void` Not Found
3569
+ */
3570
+ circuitBreakerSave: (data: ViolationCircuitBreakerDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<number>;
3571
+ /**
3572
+ * @description 检查简易处罚是否会触发熔断,返回最基本的是否熔断以及触发熔断的规则名称
3573
+ *
3574
+ * @tags vio
3575
+ * @name CircuitBreakerViolation
3576
+ * @summary 检查单一简易处罚是否会触发熔断
3577
+ * @request POST:/accident-service/vio/circuit-breaker/violation
3578
+ * @response `200` `CircuitBreakerCheckResult` OK
3579
+ * @response `201` `void` Created
3580
+ * @response `401` `void` Unauthorized
3581
+ * @response `403` `void` Forbidden
3582
+ * @response `404` `void` Not Found
3583
+ */
3584
+ circuitBreakerViolation: (data: CircuitBreakerCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<CircuitBreakerCheckResult>;
3585
+ /**
3586
+ * @description 检查简易处罚是否会触发熔断,返回最基本的是否熔断以及触发熔断的规则名称
3587
+ *
3588
+ * @tags vio
3589
+ * @name CircuitBreakerViolationBatch
3590
+ * @summary 检查执法简易处罚是否会触发熔断
3591
+ * @request POST:/accident-service/vio/circuit-breaker/violation-batch
3592
+ * @response `200` `CircuitBreakerCheckResult` OK
3593
+ * @response `201` `void` Created
3594
+ * @response `401` `void` Unauthorized
3595
+ * @response `403` `void` Forbidden
3596
+ * @response `404` `void` Not Found
3597
+ */
3598
+ circuitBreakerViolationBatch: (data: CircuitBreakerCheckBatchRequest, axiosConfig?: AxiosRequestConfig) => Promise<CircuitBreakerCheckResult>;
3599
+ /**
3600
+ * No description
3601
+ *
3602
+ * @tags vio
3603
+ * @name GetCircuitBreakerById
3604
+ * @summary 根据id获取
3605
+ * @request GET:/accident-service/vio/circuit-breaker/{id}
3606
+ * @response `200` `ViolationCircuitBreakerDTORes` OK
3607
+ * @response `401` `void` Unauthorized
3608
+ * @response `403` `void` Forbidden
3609
+ * @response `404` `void` Not Found
3610
+ */
3611
+ getCircuitBreakerById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<ViolationCircuitBreakerDTORes>;
3612
+ /**
3613
+ * No description
3614
+ *
3615
+ * @tags vio
3616
+ * @name DeleteCircuitBreakerById
3617
+ * @summary 删除执法熔断规则
3618
+ * @request DELETE:/accident-service/vio/circuit-breaker/{id}
3619
+ * @response `200` `void` OK
3620
+ * @response `204` `void` No Content
3621
+ * @response `401` `void` Unauthorized
3622
+ * @response `403` `void` Forbidden
3623
+ */
3624
+ deleteCircuitBreakerById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3625
+ /**
3626
+ * No description
3627
+ *
3628
+ * @tags vio
3629
+ * @name PutCircuitBreakerRecoverById
3630
+ * @summary 恢复执法熔断规则
3631
+ * @request PUT:/accident-service/vio/circuit-breaker/{id}/recover
3632
+ * @response `200` `void` OK
3633
+ * @response `201` `void` Created
3634
+ * @response `401` `void` Unauthorized
3635
+ * @response `403` `void` Forbidden
3636
+ * @response `404` `void` Not Found
3637
+ */
3638
+ putCircuitBreakerRecoverById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3639
+ };
2614
3640
  evidence: {
2615
3641
  /**
2616
3642
  * No description