szpt-driver-api 1.0.108 → 1.0.109
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 +2211 -759
- package/accident.js +1 -1
- package/accident.js.map +1 -1
- package/ai.d.ts +604 -7
- package/ai.js +1 -1
- package/ai.js.map +1 -1
- package/auth.d.ts +838 -16
- package/auth.js +1 -1
- package/auth.js.map +1 -1
- package/authBpmnQuery.d.ts +6 -6
- package/authBpmnQuery.js +1 -1
- package/authBpmnQuery.js.map +1 -1
- package/authDuty.d.ts +54 -18
- package/authDuty.js +1 -1
- package/authDuty.js.map +1 -1
- package/authV2.d.ts +78 -2
- package/authV2.js +1 -1
- package/authV2.js.map +1 -1
- package/common.d.ts +2 -2
- package/common.js +1 -1
- package/common.js.map +1 -1
- package/external.d.ts +66 -37
- package/external.js +1 -1
- package/external.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/oss.d.ts +222 -10
- package/oss.js +1 -1
- package/oss.js.map +1 -1
- package/package.json +1 -1
- package/query.d.ts +21 -21
- package/query.js +1 -1
- package/query.js.map +1 -1
- package/statisticManage.d.ts +126 -0
- package/statisticManage.js +1 -1
- package/statisticManage.js.map +1 -1
- package/szAccident.d.ts +503 -2
- package/szAccident.js +1 -1
- package/szAccident.js.map +1 -1
- package/szAccidentPublic.d.ts +12 -0
- package/szAccidentPublic.js.map +1 -1
- package/szTraffic.d.ts +1275 -63
- package/szTraffic.js +1 -1
- package/szTraffic.js.map +1 -1
- package/videoService.d.ts +4 -4
- package/videoService.js +1 -1
- package/videoService.js.map +1 -1
- package/violation.d.ts +65 -0
- package/violation.js +1 -1
- package/violation.js.map +1 -1
package/accident.d.ts
CHANGED
|
@@ -1,3 +1,154 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 滨江6个即时DTO
|
|
3
|
+
*/
|
|
4
|
+
export declare class AccidentBinJiangImmediateDTO {
|
|
5
|
+
/**
|
|
6
|
+
* 创建时间
|
|
7
|
+
* @format int64
|
|
8
|
+
*/
|
|
9
|
+
createTime: number;
|
|
10
|
+
/** 创建人 */
|
|
11
|
+
createUser: string;
|
|
12
|
+
/**
|
|
13
|
+
* 是否被删除
|
|
14
|
+
* @example false
|
|
15
|
+
*/
|
|
16
|
+
deleted: boolean;
|
|
17
|
+
/** 部门代码 */
|
|
18
|
+
department: string;
|
|
19
|
+
/** 数据摘要 */
|
|
20
|
+
digest: EntityDigest;
|
|
21
|
+
/** 事故处置结果 (1-浙里快处, 2-警务通开具, 3-自行协商, 4-移交事故中队) */
|
|
22
|
+
disposalResult: string;
|
|
23
|
+
/**
|
|
24
|
+
* 处置完成时间
|
|
25
|
+
* @format int64
|
|
26
|
+
*/
|
|
27
|
+
disposalTime: number;
|
|
28
|
+
/** 处置民警ID */
|
|
29
|
+
disposalUser: string;
|
|
30
|
+
/**
|
|
31
|
+
* 最近修改时间
|
|
32
|
+
* @format int64
|
|
33
|
+
*/
|
|
34
|
+
editTime: number;
|
|
35
|
+
/** 最后修改人 */
|
|
36
|
+
editUser: string;
|
|
37
|
+
/**
|
|
38
|
+
* 是否宣教
|
|
39
|
+
* @example false
|
|
40
|
+
*/
|
|
41
|
+
educationStatus: boolean;
|
|
42
|
+
/**
|
|
43
|
+
* 指导指派时间
|
|
44
|
+
* @format int64
|
|
45
|
+
*/
|
|
46
|
+
guidanceAssignTime: number;
|
|
47
|
+
/** 指导意见 */
|
|
48
|
+
guidanceOpinion: string;
|
|
49
|
+
/**
|
|
50
|
+
* 指导请求时间
|
|
51
|
+
* @format int64
|
|
52
|
+
*/
|
|
53
|
+
guidanceRequestTime: number;
|
|
54
|
+
/** 民警指导状态 (0-无须指导, 1-待指派, 2-已指派, 3-已完成) */
|
|
55
|
+
guidanceStatus: string;
|
|
56
|
+
/** 指导民警ID */
|
|
57
|
+
guidanceUser: string;
|
|
58
|
+
/**
|
|
59
|
+
* 交接接收时间
|
|
60
|
+
* @format int64
|
|
61
|
+
*/
|
|
62
|
+
handoverAcceptTime: number;
|
|
63
|
+
/** 移交强制措施类型 */
|
|
64
|
+
handoverForceType: string[];
|
|
65
|
+
/** 强制措施文书编号 */
|
|
66
|
+
handoverForceWsbh: string;
|
|
67
|
+
/** 移交材料内容项 */
|
|
68
|
+
handoverMaterials: string[];
|
|
69
|
+
/** 移交监控记录 */
|
|
70
|
+
handoverMonitorRecords: HandoverMonitorRecord[];
|
|
71
|
+
/** 移交原因类型 */
|
|
72
|
+
handoverReasonType: string;
|
|
73
|
+
/** 交接结果 (1-确认接收, 2-驳回) */
|
|
74
|
+
handoverReceiveStatus: string;
|
|
75
|
+
/**
|
|
76
|
+
* 交接确认时间
|
|
77
|
+
* @format int64
|
|
78
|
+
*/
|
|
79
|
+
handoverReceiveTime: number;
|
|
80
|
+
/** 交接确认人ID */
|
|
81
|
+
handoverReceiveUser: string;
|
|
82
|
+
/** 驳回具体原因 */
|
|
83
|
+
handoverRejectReason: string;
|
|
84
|
+
/** 驳回类型 (不应移交/材料补证) */
|
|
85
|
+
handoverRejectType: string;
|
|
86
|
+
/** 事故移交说明 */
|
|
87
|
+
handoverRemark: string;
|
|
88
|
+
/** 移交状态 (0-未移交, 1-待补证, 2-待接收, 3-已接收, 4-已驳回) */
|
|
89
|
+
handoverStatus: string;
|
|
90
|
+
/**
|
|
91
|
+
* 移交提交时间
|
|
92
|
+
* @format int64
|
|
93
|
+
*/
|
|
94
|
+
handoverTime: number;
|
|
95
|
+
/**
|
|
96
|
+
* ID
|
|
97
|
+
* @format int64
|
|
98
|
+
*/
|
|
99
|
+
id: number;
|
|
100
|
+
/**
|
|
101
|
+
* 是否即时吹哨
|
|
102
|
+
* @example false
|
|
103
|
+
*/
|
|
104
|
+
immediateWhistle: boolean;
|
|
105
|
+
/**
|
|
106
|
+
* 就医检查报告是否上传
|
|
107
|
+
* @example false
|
|
108
|
+
*/
|
|
109
|
+
medicalReportUploaded: boolean;
|
|
110
|
+
/**
|
|
111
|
+
* 是否处罚
|
|
112
|
+
* @example false
|
|
113
|
+
*/
|
|
114
|
+
punishmentStatus: boolean;
|
|
115
|
+
/** 救助类型 (无须就医/送医) */
|
|
116
|
+
rescueType: string;
|
|
117
|
+
/** 到场民警ID */
|
|
118
|
+
sceneUser: string;
|
|
119
|
+
/** 事故编号 */
|
|
120
|
+
sgbh: string;
|
|
121
|
+
/**
|
|
122
|
+
* 移交中队民警时间
|
|
123
|
+
* @format int64
|
|
124
|
+
*/
|
|
125
|
+
transferTime: number;
|
|
126
|
+
/** 移交中队民警ID */
|
|
127
|
+
transferUser: string;
|
|
128
|
+
/**
|
|
129
|
+
* 吹哨登记时间
|
|
130
|
+
* @format int64
|
|
131
|
+
*/
|
|
132
|
+
whistleTime: number;
|
|
133
|
+
/** 吹哨登记人ID */
|
|
134
|
+
whistleUser: string;
|
|
135
|
+
}
|
|
136
|
+
export declare class AccidentBinJiangImmediateUserFields {
|
|
137
|
+
/**
|
|
138
|
+
* 是否宣教
|
|
139
|
+
* @example false
|
|
140
|
+
*/
|
|
141
|
+
educationStatus: boolean;
|
|
142
|
+
/** 宣教类型 (视频宣教/宣传单页/分享亲友等) */
|
|
143
|
+
educationType: string;
|
|
144
|
+
/** 未处罚原因 */
|
|
145
|
+
noPunishmentReason: string;
|
|
146
|
+
/**
|
|
147
|
+
* 是否处罚
|
|
148
|
+
* @example false
|
|
149
|
+
*/
|
|
150
|
+
punishmentStatus: boolean;
|
|
151
|
+
}
|
|
1
152
|
export declare class AccidentDTOReq {
|
|
2
153
|
/** 作废原因 */
|
|
3
154
|
abortReason?: string;
|
|
@@ -183,8 +334,6 @@ export declare class AccidentDTOReq {
|
|
|
183
334
|
tjr?: string;
|
|
184
335
|
/** 辖区 */
|
|
185
336
|
townCode?: string;
|
|
186
|
-
/** 移交处理详情 */
|
|
187
|
-
transferUserHandleList?: AccidentTransferUserHandleDTOReq[];
|
|
188
337
|
/** 推送六合一情况 */
|
|
189
338
|
trffPushState?: AccidentPushStateReq;
|
|
190
339
|
/** 事故类型 */
|
|
@@ -404,8 +553,6 @@ export declare class AccidentDTORes {
|
|
|
404
553
|
tjr: string;
|
|
405
554
|
/** 辖区 */
|
|
406
555
|
townCode: string;
|
|
407
|
-
/** 移交处理详情 */
|
|
408
|
-
transferUserHandleList: AccidentTransferUserHandleDTORes[];
|
|
409
556
|
/** 推送六合一情况 */
|
|
410
557
|
trffPushState: AccidentPushStateRes;
|
|
411
558
|
/** 事故类型 */
|
|
@@ -644,17 +791,31 @@ export declare class AccidentQueryBean {
|
|
|
644
791
|
* @format int64
|
|
645
792
|
*/
|
|
646
793
|
editTimeEnd?: number;
|
|
794
|
+
/**
|
|
795
|
+
* 是否即时宣教
|
|
796
|
+
* @example false
|
|
797
|
+
*/
|
|
798
|
+
educationStatus?: boolean;
|
|
647
799
|
/**
|
|
648
800
|
* 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false
|
|
649
801
|
* @example false
|
|
650
802
|
*/
|
|
651
803
|
filterByAdminDepartment?: boolean;
|
|
804
|
+
/** 即时指导状态列表 */
|
|
805
|
+
guidanceStatusIn?: string[];
|
|
806
|
+
/** 即时定则移交状态列表 */
|
|
807
|
+
handoverStatusIn?: string[];
|
|
652
808
|
/** [当事人]号牌号码 */
|
|
653
809
|
hphm?: string;
|
|
654
810
|
/** [当事人]号牌种类 */
|
|
655
811
|
hpzl?: string;
|
|
656
812
|
/** 主键 */
|
|
657
813
|
ids?: number[];
|
|
814
|
+
/**
|
|
815
|
+
* 是否即时吹哨
|
|
816
|
+
* @example false
|
|
817
|
+
*/
|
|
818
|
+
immediateWhistle?: boolean;
|
|
658
819
|
/**
|
|
659
820
|
* 是否包含已删除文件
|
|
660
821
|
* @example false
|
|
@@ -673,6 +834,11 @@ export declare class AccidentQueryBean {
|
|
|
673
834
|
jtfsIn?: string[];
|
|
674
835
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
675
836
|
jtfsLike?: string;
|
|
837
|
+
/**
|
|
838
|
+
* 就医检查报告是否上传
|
|
839
|
+
* @example false
|
|
840
|
+
*/
|
|
841
|
+
medicalReportUploaded?: boolean;
|
|
676
842
|
/**
|
|
677
843
|
* 是否必须经过部门条件过滤
|
|
678
844
|
* @example false
|
|
@@ -696,6 +862,13 @@ export declare class AccidentQueryBean {
|
|
|
696
862
|
processId?: string;
|
|
697
863
|
/** 事故业务编号 */
|
|
698
864
|
processUid?: string;
|
|
865
|
+
/**
|
|
866
|
+
* 是否即时处罚
|
|
867
|
+
* @example false
|
|
868
|
+
*/
|
|
869
|
+
punishmentStatus?: boolean;
|
|
870
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
871
|
+
rescueType?: string;
|
|
699
872
|
/**
|
|
700
873
|
* [当事人]是否出险
|
|
701
874
|
* @example false
|
|
@@ -703,6 +876,8 @@ export declare class AccidentQueryBean {
|
|
|
703
876
|
sfcx?: boolean;
|
|
704
877
|
/** 事故编号 */
|
|
705
878
|
sgbh?: string;
|
|
879
|
+
/** 事故编号(In查询) */
|
|
880
|
+
sgbhIn?: string[];
|
|
706
881
|
/** 事故结案渠道批量查询 */
|
|
707
882
|
sgjaqdIn?: string[];
|
|
708
883
|
/** 事故情形。支持多选 */
|
|
@@ -739,14 +914,6 @@ export declare class AccidentQueryBean {
|
|
|
739
914
|
townCode?: string[];
|
|
740
915
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
741
916
|
townCodePrefix?: string[];
|
|
742
|
-
/** 事故移交受理部门 */
|
|
743
|
-
transferHandleDepartmentIn?: string[];
|
|
744
|
-
/** 事故移交用户 */
|
|
745
|
-
transferHandleFromUser?: string;
|
|
746
|
-
/** 事故移交受理状态 */
|
|
747
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
748
|
-
/** 事故移交受理用户 */
|
|
749
|
-
transferHandleUser?: string;
|
|
750
917
|
/** 事故类型(In查询) */
|
|
751
918
|
typeIn?: string[];
|
|
752
919
|
/** 天气 */
|
|
@@ -868,44 +1035,6 @@ export declare class AccidentTransferReq {
|
|
|
868
1035
|
/** 移交到目标用户 */
|
|
869
1036
|
targetUser?: string;
|
|
870
1037
|
}
|
|
871
|
-
export declare class AccidentTransferUserHandleDTOReq {
|
|
872
|
-
/** 移交受理部门 */
|
|
873
|
-
department?: string;
|
|
874
|
-
/** 移交发起人 */
|
|
875
|
-
fromUser?: string;
|
|
876
|
-
/** 移交原因 */
|
|
877
|
-
reason?: string;
|
|
878
|
-
/** 事故编号 */
|
|
879
|
-
sgbh?: string;
|
|
880
|
-
/** 状态 */
|
|
881
|
-
state?: "Active" | "Handled" | "Transfer";
|
|
882
|
-
/**
|
|
883
|
-
* 移交发起时间
|
|
884
|
-
* @format int64
|
|
885
|
-
*/
|
|
886
|
-
time?: number;
|
|
887
|
-
/** 移交受理人 */
|
|
888
|
-
user?: string;
|
|
889
|
-
}
|
|
890
|
-
export declare class AccidentTransferUserHandleDTORes {
|
|
891
|
-
/** 移交受理部门 */
|
|
892
|
-
department: string;
|
|
893
|
-
/** 移交发起人 */
|
|
894
|
-
fromUser: string;
|
|
895
|
-
/** 移交原因 */
|
|
896
|
-
reason: string;
|
|
897
|
-
/** 事故编号 */
|
|
898
|
-
sgbh: string;
|
|
899
|
-
/** 状态 */
|
|
900
|
-
state: "Active" | "Handled" | "Transfer";
|
|
901
|
-
/**
|
|
902
|
-
* 移交发起时间
|
|
903
|
-
* @format int64
|
|
904
|
-
*/
|
|
905
|
-
time: number;
|
|
906
|
-
/** 移交受理人 */
|
|
907
|
-
user: string;
|
|
908
|
-
}
|
|
909
1038
|
export declare class AccidentUser {
|
|
910
1039
|
/**
|
|
911
1040
|
* 事故记录ID
|
|
@@ -916,6 +1045,8 @@ export declare class AccidentUser {
|
|
|
916
1045
|
bank: string;
|
|
917
1046
|
/** 开户银行账号 */
|
|
918
1047
|
bankAccount: string;
|
|
1048
|
+
/** 滨江6个即时相关字段 */
|
|
1049
|
+
bjImmediate: AccidentBinJiangImmediateUserFields;
|
|
919
1050
|
/** 保险公司 */
|
|
920
1051
|
bxgs: string;
|
|
921
1052
|
/**
|
|
@@ -1212,535 +1343,457 @@ export declare class AccidentUserWithInsuranceInfo {
|
|
|
1212
1343
|
zjhm: string;
|
|
1213
1344
|
}
|
|
1214
1345
|
/**
|
|
1215
|
-
*
|
|
1346
|
+
* 滨江事故中队移交处理DTO
|
|
1216
1347
|
*/
|
|
1217
|
-
export declare class
|
|
1348
|
+
export declare class BinJiangSgzdAccidentHandoverDTO {
|
|
1349
|
+
/** 事故登记表文件路径 */
|
|
1350
|
+
accidentFile: string;
|
|
1351
|
+
/** 到案状态 (0-当事人未到案, 1-当事人到案) */
|
|
1352
|
+
appearanceStatus: string;
|
|
1353
|
+
/** 约处记录列表 */
|
|
1354
|
+
appointmentRecords: BinJiangSgzdAppointmentRecordDTO[];
|
|
1355
|
+
/**
|
|
1356
|
+
* 审批日期
|
|
1357
|
+
* @format int64
|
|
1358
|
+
*/
|
|
1359
|
+
approvalDate: number;
|
|
1360
|
+
/** 审批意见说明 */
|
|
1361
|
+
approvalRemark: string;
|
|
1362
|
+
/**
|
|
1363
|
+
* 结案日期
|
|
1364
|
+
* @format int64
|
|
1365
|
+
*/
|
|
1366
|
+
closeDate: number;
|
|
1367
|
+
/** 结案说明 */
|
|
1368
|
+
closeRemark: string;
|
|
1218
1369
|
/**
|
|
1219
1370
|
* 创建时间
|
|
1220
1371
|
* @format int64
|
|
1221
1372
|
*/
|
|
1222
1373
|
createTime: number;
|
|
1223
|
-
/**
|
|
1374
|
+
/** 创建人 */
|
|
1224
1375
|
createUser: string;
|
|
1225
1376
|
/**
|
|
1226
|
-
*
|
|
1377
|
+
* 是否被删除
|
|
1227
1378
|
* @example false
|
|
1228
1379
|
*/
|
|
1229
1380
|
deleted: boolean;
|
|
1230
|
-
/**
|
|
1381
|
+
/** 部门代码 */
|
|
1382
|
+
department: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* 认定书日期
|
|
1385
|
+
* @format int64
|
|
1386
|
+
*/
|
|
1387
|
+
determinationDate: number;
|
|
1388
|
+
/** 认定说明 */
|
|
1389
|
+
determinationRemark: string;
|
|
1390
|
+
/** 认定书送达记录列表 */
|
|
1391
|
+
determinationSendList: BinJiangSgzdDeterminationSendDTO[];
|
|
1392
|
+
/** 数据摘要 */
|
|
1231
1393
|
digest: EntityDigest;
|
|
1232
1394
|
/**
|
|
1233
|
-
*
|
|
1395
|
+
* 最近修改时间
|
|
1234
1396
|
* @format int64
|
|
1235
1397
|
*/
|
|
1236
1398
|
editTime: number;
|
|
1237
|
-
/**
|
|
1399
|
+
/** 最后修改人 */
|
|
1238
1400
|
editUser: string;
|
|
1239
1401
|
/**
|
|
1240
|
-
*
|
|
1402
|
+
* 证据公开日期
|
|
1241
1403
|
* @format int64
|
|
1242
1404
|
*/
|
|
1243
|
-
|
|
1244
|
-
/**
|
|
1245
|
-
|
|
1246
|
-
/**
|
|
1247
|
-
|
|
1248
|
-
/**
|
|
1249
|
-
|
|
1250
|
-
/** 添加到黑名单原因 */
|
|
1251
|
-
reason: string;
|
|
1252
|
-
}
|
|
1253
|
-
export declare class CBViolation {
|
|
1254
|
-
/** 处罚种类 */
|
|
1255
|
-
cfzl?: string;
|
|
1256
|
-
/** 车辆分类 */
|
|
1257
|
-
clfl?: string;
|
|
1405
|
+
evidenceDate: number;
|
|
1406
|
+
/** 公开说明 */
|
|
1407
|
+
evidenceRemark: string;
|
|
1408
|
+
/** 一般程序笔录列表 */
|
|
1409
|
+
generalProcedures: BinJiangSgzdGeneralProcedureDTO[];
|
|
1410
|
+
/** 移交登记表文件路径 */
|
|
1411
|
+
handoverFile: string;
|
|
1258
1412
|
/**
|
|
1259
|
-
*
|
|
1413
|
+
* ID
|
|
1260
1414
|
* @format int64
|
|
1261
1415
|
*/
|
|
1262
|
-
|
|
1263
|
-
/** 当事人 */
|
|
1264
|
-
dsr?: string;
|
|
1265
|
-
/** 非机动车号牌种类 */
|
|
1266
|
-
fjdchpzl?: string;
|
|
1267
|
-
/** 发现机关 */
|
|
1268
|
-
fxjg?: string;
|
|
1269
|
-
/** 号牌号码 */
|
|
1270
|
-
hphm?: string;
|
|
1271
|
-
/** 号牌种类 */
|
|
1272
|
-
hpzl?: string;
|
|
1273
|
-
/** 驾驶证号 */
|
|
1274
|
-
jszh?: string;
|
|
1275
|
-
/** 交通方式 */
|
|
1276
|
-
jtfs?: string;
|
|
1277
|
-
/** 人员分类 */
|
|
1278
|
-
ryfl?: string;
|
|
1279
|
-
/** 违法行为 */
|
|
1280
|
-
wfxw?: string;
|
|
1281
|
-
/** 证件名称 */
|
|
1282
|
-
zjmc?: string;
|
|
1283
|
-
/** 执勤民警 */
|
|
1284
|
-
zqmj?: string;
|
|
1285
|
-
}
|
|
1286
|
-
export declare class CircuitBreakerCheckBatchRequest {
|
|
1416
|
+
id: number;
|
|
1287
1417
|
/**
|
|
1288
|
-
*
|
|
1418
|
+
* 调查报告日期
|
|
1289
1419
|
* @format int64
|
|
1290
1420
|
*/
|
|
1291
|
-
|
|
1292
|
-
/**
|
|
1293
|
-
|
|
1294
|
-
}
|
|
1295
|
-
export declare class CircuitBreakerCheckRequest {
|
|
1421
|
+
investigationDate: number;
|
|
1422
|
+
/** 调查报告说明 */
|
|
1423
|
+
investigationRemark: string;
|
|
1296
1424
|
/**
|
|
1297
|
-
*
|
|
1425
|
+
* 处理日期
|
|
1298
1426
|
* @format int64
|
|
1299
1427
|
*/
|
|
1300
|
-
|
|
1301
|
-
/**
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1428
|
+
processDate: number;
|
|
1429
|
+
/** 处理说明 */
|
|
1430
|
+
processRemark: string;
|
|
1431
|
+
/** 处理结果 (1-简易认定, 2-一般程序, 3-协商) */
|
|
1432
|
+
processResult: string;
|
|
1433
|
+
/** 检验鉴定列表 */
|
|
1434
|
+
reappraisalApplications: BinJiangSgzdReappraisalApplicationDTO[];
|
|
1435
|
+
/** 接收状态 (0-待接收, 1-已接收) */
|
|
1436
|
+
receiveStatus: string;
|
|
1305
1437
|
/**
|
|
1306
|
-
*
|
|
1438
|
+
* 接收时间
|
|
1307
1439
|
* @format int64
|
|
1308
1440
|
*/
|
|
1309
|
-
|
|
1310
|
-
/** 熔断数值名称 */
|
|
1311
|
-
breakDeltaName: string;
|
|
1312
|
-
/** 熔断规则名称 */
|
|
1313
|
-
breakRule: string;
|
|
1441
|
+
receiveTime: number;
|
|
1314
1442
|
/**
|
|
1315
|
-
*
|
|
1316
|
-
* @
|
|
1443
|
+
* 处罚日期
|
|
1444
|
+
* @format int64
|
|
1317
1445
|
*/
|
|
1318
|
-
|
|
1319
|
-
/**
|
|
1320
|
-
|
|
1446
|
+
resultDate: number;
|
|
1447
|
+
/** 处罚说明 */
|
|
1448
|
+
resultRemark: string;
|
|
1449
|
+
/** 处罚结果(多选) */
|
|
1450
|
+
results: string[];
|
|
1451
|
+
/** 事故编号 */
|
|
1452
|
+
sgbh: string;
|
|
1453
|
+
/** 追踪记录列表 */
|
|
1454
|
+
trackingRecords: BinJiangSgzdTrackingRecordDTO[];
|
|
1321
1455
|
}
|
|
1322
|
-
|
|
1456
|
+
/**
|
|
1457
|
+
* 滨江事故中队约处记录DTO
|
|
1458
|
+
*/
|
|
1459
|
+
export declare class BinJiangSgzdAppointmentRecordDTO {
|
|
1323
1460
|
/**
|
|
1324
|
-
*
|
|
1461
|
+
* 关联事故移交ID
|
|
1325
1462
|
* @format int64
|
|
1326
1463
|
*/
|
|
1327
|
-
|
|
1328
|
-
/**
|
|
1329
|
-
|
|
1330
|
-
/** 熔断规则名称 */
|
|
1331
|
-
breakRule: string;
|
|
1464
|
+
accidentHandoverId: number;
|
|
1465
|
+
/** 约处内容 */
|
|
1466
|
+
content: string;
|
|
1332
1467
|
/**
|
|
1333
|
-
*
|
|
1334
|
-
* @
|
|
1468
|
+
* 创建时间
|
|
1469
|
+
* @format int64
|
|
1335
1470
|
*/
|
|
1336
|
-
|
|
1337
|
-
/** 熔断原因 */
|
|
1338
|
-
reason: string;
|
|
1339
|
-
/** 触发规则 以wfxw为key */
|
|
1340
|
-
rules: Record<string, any>;
|
|
1341
|
-
}
|
|
1342
|
-
export declare class CircuitBreakerCheckResultDetail {
|
|
1471
|
+
createTime: number;
|
|
1343
1472
|
/**
|
|
1344
|
-
*
|
|
1473
|
+
* 联系日期
|
|
1345
1474
|
* @format int64
|
|
1346
1475
|
*/
|
|
1347
|
-
|
|
1348
|
-
/** 熔断数值名称 */
|
|
1349
|
-
breakDeltaName: string;
|
|
1350
|
-
/** 熔断规则名称 */
|
|
1351
|
-
breakRule: string;
|
|
1476
|
+
date: number;
|
|
1352
1477
|
/**
|
|
1353
|
-
*
|
|
1478
|
+
* 是否被删除
|
|
1354
1479
|
* @example false
|
|
1355
1480
|
*/
|
|
1356
|
-
|
|
1357
|
-
/** 熔断原因 */
|
|
1358
|
-
reason: string;
|
|
1359
|
-
/** 触发规则 */
|
|
1360
|
-
rules: CircuitBreakerRuleResult[];
|
|
1361
|
-
}
|
|
1362
|
-
export declare class CircuitBreakerCompareBaseValue {
|
|
1481
|
+
deleted: boolean;
|
|
1363
1482
|
/**
|
|
1364
|
-
*
|
|
1483
|
+
* 最近修改时间
|
|
1365
1484
|
* @format int64
|
|
1366
1485
|
*/
|
|
1367
|
-
|
|
1368
|
-
/**
|
|
1369
|
-
* 是否熔断
|
|
1370
|
-
* @example false
|
|
1371
|
-
*/
|
|
1372
|
-
circuitBreak: boolean;
|
|
1373
|
-
/** 比较 */
|
|
1374
|
-
compare: "eq" | "gte" | "lte";
|
|
1375
|
-
/** 名称 */
|
|
1376
|
-
name: string;
|
|
1486
|
+
editTime: number;
|
|
1377
1487
|
/**
|
|
1378
|
-
*
|
|
1488
|
+
* ID
|
|
1379
1489
|
* @format int64
|
|
1380
1490
|
*/
|
|
1381
|
-
|
|
1491
|
+
id: number;
|
|
1492
|
+
/** 当事人姓名 */
|
|
1493
|
+
partyName: string;
|
|
1494
|
+
/** 手机号 */
|
|
1495
|
+
phone: string;
|
|
1496
|
+
/** 事故编号 */
|
|
1497
|
+
sgbh: string;
|
|
1382
1498
|
}
|
|
1383
|
-
|
|
1499
|
+
/**
|
|
1500
|
+
* 滨江事故中队认定书送达记录DTO
|
|
1501
|
+
*/
|
|
1502
|
+
export declare class BinJiangSgzdDeterminationSendDTO {
|
|
1384
1503
|
/**
|
|
1385
|
-
*
|
|
1386
|
-
* @
|
|
1504
|
+
* 关联事故移交ID
|
|
1505
|
+
* @format int64
|
|
1387
1506
|
*/
|
|
1388
|
-
|
|
1389
|
-
/** 车辆类型大类(交通方式) 例如 K H T 等 */
|
|
1390
|
-
cllxGroup: string;
|
|
1507
|
+
accidentHandoverId: number;
|
|
1391
1508
|
/**
|
|
1392
|
-
*
|
|
1393
|
-
* @
|
|
1509
|
+
* 创建时间
|
|
1510
|
+
* @format int64
|
|
1394
1511
|
*/
|
|
1395
|
-
|
|
1512
|
+
createTime: number;
|
|
1396
1513
|
/**
|
|
1397
|
-
*
|
|
1514
|
+
* 是否被删除
|
|
1398
1515
|
* @example false
|
|
1399
1516
|
*/
|
|
1400
|
-
|
|
1517
|
+
deleted: boolean;
|
|
1401
1518
|
/**
|
|
1402
|
-
*
|
|
1403
|
-
* @
|
|
1519
|
+
* 最近修改时间
|
|
1520
|
+
* @format int64
|
|
1404
1521
|
*/
|
|
1405
|
-
|
|
1406
|
-
/** 车辆类型列表 */
|
|
1407
|
-
cllxList: string[];
|
|
1408
|
-
/** 规则比较结果 */
|
|
1409
|
-
compareResults: CircuitBreakerCompareBaseValue[];
|
|
1522
|
+
editTime: number;
|
|
1410
1523
|
/**
|
|
1411
|
-
*
|
|
1524
|
+
* ID
|
|
1412
1525
|
* @format int64
|
|
1413
1526
|
*/
|
|
1414
|
-
|
|
1415
|
-
/**
|
|
1416
|
-
|
|
1527
|
+
id: number;
|
|
1528
|
+
/** 当事人姓名 */
|
|
1529
|
+
partyName: string;
|
|
1530
|
+
/** 手机号 */
|
|
1531
|
+
phone: string;
|
|
1417
1532
|
/**
|
|
1418
|
-
*
|
|
1419
|
-
* @
|
|
1533
|
+
* 收到日期
|
|
1534
|
+
* @format int64
|
|
1420
1535
|
*/
|
|
1421
|
-
|
|
1422
|
-
/** 规则描述 */
|
|
1423
|
-
description: string;
|
|
1424
|
-
/** 数据签名 */
|
|
1425
|
-
digest: EntityDigest;
|
|
1536
|
+
receiveDate: number;
|
|
1426
1537
|
/**
|
|
1427
|
-
*
|
|
1428
|
-
* @
|
|
1538
|
+
* 发出日期
|
|
1539
|
+
* @format int64
|
|
1429
1540
|
*/
|
|
1430
|
-
|
|
1541
|
+
sendDate: number;
|
|
1542
|
+
/** 事故编号 */
|
|
1543
|
+
sgbh: string;
|
|
1544
|
+
}
|
|
1545
|
+
/**
|
|
1546
|
+
* 滨江事故中队一般程序流程笔录DTO
|
|
1547
|
+
*/
|
|
1548
|
+
export declare class BinJiangSgzdGeneralProcedureDTO {
|
|
1431
1549
|
/**
|
|
1432
|
-
*
|
|
1550
|
+
* 关联事故移交ID
|
|
1433
1551
|
* @format int64
|
|
1434
1552
|
*/
|
|
1435
|
-
|
|
1436
|
-
/** 修改人用户名 */
|
|
1437
|
-
editUser: string;
|
|
1553
|
+
accidentHandoverId: number;
|
|
1438
1554
|
/**
|
|
1439
|
-
*
|
|
1440
|
-
* @
|
|
1555
|
+
* 创建时间
|
|
1556
|
+
* @format int64
|
|
1441
1557
|
*/
|
|
1442
|
-
|
|
1558
|
+
createTime: number;
|
|
1443
1559
|
/**
|
|
1444
|
-
*
|
|
1560
|
+
* 是否被删除
|
|
1445
1561
|
* @example false
|
|
1446
1562
|
*/
|
|
1447
|
-
|
|
1448
|
-
/** 号牌种类列表 */
|
|
1449
|
-
hpzlList: string[];
|
|
1563
|
+
deleted: boolean;
|
|
1450
1564
|
/**
|
|
1451
|
-
*
|
|
1565
|
+
* 最近修改时间
|
|
1566
|
+
* @format int64
|
|
1567
|
+
*/
|
|
1568
|
+
editTime: number;
|
|
1569
|
+
/**
|
|
1570
|
+
* ID
|
|
1452
1571
|
* @format int64
|
|
1453
1572
|
*/
|
|
1454
1573
|
id: number;
|
|
1455
|
-
/**
|
|
1456
|
-
|
|
1574
|
+
/** 当事人姓名 */
|
|
1575
|
+
partyName: string;
|
|
1576
|
+
/** 事故编号 */
|
|
1577
|
+
sgbh: string;
|
|
1457
1578
|
/**
|
|
1458
|
-
*
|
|
1459
|
-
* @
|
|
1579
|
+
* 笔录日期
|
|
1580
|
+
* @format int64
|
|
1460
1581
|
*/
|
|
1461
|
-
|
|
1582
|
+
statementDate: number;
|
|
1583
|
+
/** 笔录说明 */
|
|
1584
|
+
statementRemark: string;
|
|
1585
|
+
}
|
|
1586
|
+
/**
|
|
1587
|
+
* 滨江事故中队当事人到案信息DTO
|
|
1588
|
+
*/
|
|
1589
|
+
export declare class BinJiangSgzdPartyAppearanceDTO {
|
|
1462
1590
|
/**
|
|
1463
|
-
*
|
|
1464
|
-
* @
|
|
1591
|
+
* 创建时间
|
|
1592
|
+
* @format int64
|
|
1465
1593
|
*/
|
|
1466
|
-
|
|
1594
|
+
createTime: number;
|
|
1467
1595
|
/**
|
|
1468
|
-
*
|
|
1469
|
-
* @
|
|
1596
|
+
* 到案日期
|
|
1597
|
+
* @format int64
|
|
1470
1598
|
*/
|
|
1471
|
-
|
|
1599
|
+
date: number;
|
|
1472
1600
|
/**
|
|
1473
|
-
*
|
|
1601
|
+
* 是否被删除
|
|
1474
1602
|
* @example false
|
|
1475
1603
|
*/
|
|
1476
|
-
|
|
1604
|
+
deleted: boolean;
|
|
1477
1605
|
/**
|
|
1478
|
-
*
|
|
1479
|
-
* @
|
|
1606
|
+
* 最近修改时间
|
|
1607
|
+
* @format int64
|
|
1480
1608
|
*/
|
|
1481
|
-
|
|
1482
|
-
/** 限制时间范围 */
|
|
1483
|
-
limitTimeRange: "daily" | "monthly";
|
|
1484
|
-
/** 规则名称 */
|
|
1485
|
-
name: string;
|
|
1486
|
-
/** 基础统计值(用于同一事故多个处罚) */
|
|
1487
|
-
plusValues: Record<string, number>;
|
|
1609
|
+
editTime: number;
|
|
1488
1610
|
/**
|
|
1489
|
-
*
|
|
1490
|
-
* @
|
|
1611
|
+
* ID
|
|
1612
|
+
* @format int64
|
|
1491
1613
|
*/
|
|
1492
|
-
|
|
1614
|
+
id: number;
|
|
1615
|
+
/** 当事人姓名 */
|
|
1616
|
+
partyName: string;
|
|
1617
|
+
/** 当事人到案说明 */
|
|
1618
|
+
remark: string;
|
|
1619
|
+
/** 事故编号 */
|
|
1620
|
+
sgbh: string;
|
|
1493
1621
|
/**
|
|
1494
|
-
*
|
|
1495
|
-
* @
|
|
1622
|
+
* 关联追踪记录ID
|
|
1623
|
+
* @format int64
|
|
1496
1624
|
*/
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1625
|
+
trackingRecordId: number;
|
|
1626
|
+
}
|
|
1627
|
+
/**
|
|
1628
|
+
* 滨江事故中队当事人确认信息DTO
|
|
1629
|
+
*/
|
|
1630
|
+
export declare class BinJiangSgzdPartyConfirmationDTO {
|
|
1500
1631
|
/**
|
|
1501
|
-
*
|
|
1502
|
-
* @
|
|
1632
|
+
* 创建时间
|
|
1633
|
+
* @format int64
|
|
1503
1634
|
*/
|
|
1504
|
-
|
|
1635
|
+
createTime: number;
|
|
1505
1636
|
/**
|
|
1506
|
-
*
|
|
1507
|
-
* @
|
|
1637
|
+
* 确认日期
|
|
1638
|
+
* @format int64
|
|
1508
1639
|
*/
|
|
1509
|
-
|
|
1510
|
-
/** 证件名称列表 */
|
|
1511
|
-
sfzmmcList: string[];
|
|
1512
|
-
/** 统计结果比对 */
|
|
1513
|
-
sqlResults: VioCircuitBreakerSqlSingleDTORes[];
|
|
1640
|
+
date: number;
|
|
1514
1641
|
/**
|
|
1515
|
-
*
|
|
1642
|
+
* 是否被删除
|
|
1516
1643
|
* @example false
|
|
1517
1644
|
*/
|
|
1518
|
-
|
|
1645
|
+
deleted: boolean;
|
|
1519
1646
|
/**
|
|
1520
|
-
*
|
|
1521
|
-
* @
|
|
1647
|
+
* 最近修改时间
|
|
1648
|
+
* @format int64
|
|
1522
1649
|
*/
|
|
1523
|
-
|
|
1524
|
-
/** 违法行为列表 */
|
|
1525
|
-
wfxwList: string[];
|
|
1650
|
+
editTime: number;
|
|
1526
1651
|
/**
|
|
1527
|
-
*
|
|
1528
|
-
* @
|
|
1652
|
+
* ID
|
|
1653
|
+
* @format int64
|
|
1529
1654
|
*/
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
/**
|
|
1534
|
-
|
|
1535
|
-
/**
|
|
1536
|
-
|
|
1655
|
+
id: number;
|
|
1656
|
+
/** 当事人姓名 */
|
|
1657
|
+
partyName: string;
|
|
1658
|
+
/** 当事人确认说明 */
|
|
1659
|
+
remark: string;
|
|
1660
|
+
/** 事故编号 */
|
|
1661
|
+
sgbh: string;
|
|
1662
|
+
/**
|
|
1663
|
+
* 关联追踪记录ID
|
|
1664
|
+
* @format int64
|
|
1665
|
+
*/
|
|
1666
|
+
trackingRecordId: number;
|
|
1537
1667
|
}
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1668
|
+
/**
|
|
1669
|
+
* 滨江事故中队检验鉴定DTO
|
|
1670
|
+
*/
|
|
1671
|
+
export declare class BinJiangSgzdReappraisalApplicationDTO {
|
|
1541
1672
|
/**
|
|
1542
|
-
*
|
|
1673
|
+
* 关联事故移交ID
|
|
1543
1674
|
* @format int64
|
|
1544
1675
|
*/
|
|
1545
|
-
|
|
1676
|
+
accidentHandoverId: number;
|
|
1546
1677
|
/**
|
|
1547
|
-
*
|
|
1678
|
+
* 创建时间
|
|
1548
1679
|
* @format int64
|
|
1549
1680
|
*/
|
|
1550
|
-
|
|
1551
|
-
/** [当事人]车架号 */
|
|
1552
|
-
cjh?: string;
|
|
1681
|
+
createTime: number;
|
|
1553
1682
|
/**
|
|
1554
|
-
*
|
|
1555
|
-
* @
|
|
1683
|
+
* 申请日期
|
|
1684
|
+
* @format int64
|
|
1556
1685
|
*/
|
|
1557
|
-
|
|
1558
|
-
/** 部门代码 */
|
|
1559
|
-
department?: string;
|
|
1560
|
-
/** 部门代码(In查询) */
|
|
1561
|
-
departmentIn?: string[];
|
|
1686
|
+
date: number;
|
|
1562
1687
|
/**
|
|
1563
|
-
*
|
|
1688
|
+
* 是否被删除
|
|
1564
1689
|
* @example false
|
|
1565
1690
|
*/
|
|
1566
|
-
|
|
1567
|
-
/** [当事人]号牌号码 */
|
|
1568
|
-
hphm?: string;
|
|
1569
|
-
/** [当事人]号牌种类 */
|
|
1570
|
-
hpzl?: string;
|
|
1571
|
-
/** 主键 */
|
|
1572
|
-
ids?: number[];
|
|
1691
|
+
deleted: boolean;
|
|
1573
1692
|
/**
|
|
1574
|
-
*
|
|
1575
|
-
* @
|
|
1693
|
+
* 最近修改时间
|
|
1694
|
+
* @format int64
|
|
1576
1695
|
*/
|
|
1577
|
-
|
|
1696
|
+
editTime: number;
|
|
1578
1697
|
/**
|
|
1579
|
-
*
|
|
1580
|
-
* @
|
|
1698
|
+
* ID
|
|
1699
|
+
* @format int64
|
|
1581
1700
|
*/
|
|
1582
|
-
|
|
1583
|
-
/** [当事人]涉及的保险公司(代码) */
|
|
1584
|
-
insuranceCompany?: string;
|
|
1585
|
-
/** 交通方式。支持多选 */
|
|
1586
|
-
jtfsIn?: string[];
|
|
1587
|
-
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
1588
|
-
jtfsLike?: string;
|
|
1701
|
+
id: number;
|
|
1589
1702
|
/**
|
|
1590
|
-
*
|
|
1591
|
-
* @
|
|
1703
|
+
* 检验鉴定确认日期
|
|
1704
|
+
* @format int64
|
|
1592
1705
|
*/
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
origin?: string[];
|
|
1597
|
-
/** @format int32 */
|
|
1598
|
-
pageIndex?: number;
|
|
1599
|
-
/** @format int32 */
|
|
1600
|
-
pageSize?: number;
|
|
1601
|
-
/** [当事人]电话 */
|
|
1602
|
-
phone?: string;
|
|
1603
|
-
/** 民警用户 */
|
|
1604
|
-
police?: string;
|
|
1605
|
-
/** 事故业务编号(processUid) */
|
|
1606
|
-
processBusinessKey?: string;
|
|
1607
|
-
processCompletedTimeIsNull?: boolean;
|
|
1608
|
-
/** 事故流程编号 */
|
|
1609
|
-
processId?: string;
|
|
1610
|
-
/** 事故业务编号 */
|
|
1611
|
-
processUid?: string;
|
|
1706
|
+
inspectionConfirmDate: number;
|
|
1707
|
+
/** 确认说明 */
|
|
1708
|
+
inspectionConfirmRemark: string;
|
|
1612
1709
|
/**
|
|
1613
|
-
*
|
|
1614
|
-
* @
|
|
1710
|
+
* 鉴定日期(送检日期)
|
|
1711
|
+
* @format int64
|
|
1615
1712
|
*/
|
|
1616
|
-
|
|
1617
|
-
/** 事故编号 */
|
|
1618
|
-
sgbh?: string;
|
|
1619
|
-
/** 事故情形。支持多选 */
|
|
1620
|
-
sgqxIn?: string[];
|
|
1621
|
-
/** 事故形态。支持多选 */
|
|
1622
|
-
sgxtIn?: string[];
|
|
1623
|
-
/** [当事人]事故责任 */
|
|
1624
|
-
sgzrIn?: string[];
|
|
1625
|
-
/** 事故状态 */
|
|
1626
|
-
stateIn?: string[];
|
|
1713
|
+
inspectionDate: number;
|
|
1627
1714
|
/**
|
|
1628
|
-
*
|
|
1715
|
+
* 收到检验鉴定报告日期
|
|
1629
1716
|
* @format int64
|
|
1630
1717
|
*/
|
|
1631
|
-
|
|
1718
|
+
inspectionReceiveDate: number;
|
|
1719
|
+
/** 收到说明 */
|
|
1720
|
+
inspectionReceiveRemark: string;
|
|
1721
|
+
/** 鉴定说明 */
|
|
1722
|
+
inspectionRemark: string;
|
|
1723
|
+
/** 申请人 */
|
|
1724
|
+
partyName: string;
|
|
1725
|
+
/** 申请说明 */
|
|
1726
|
+
remark: string;
|
|
1632
1727
|
/**
|
|
1633
|
-
*
|
|
1728
|
+
* 报告送达日期
|
|
1634
1729
|
* @format int64
|
|
1635
1730
|
*/
|
|
1636
|
-
|
|
1637
|
-
/**
|
|
1638
|
-
|
|
1639
|
-
/** 辖区前缀匹配。支持多个匹配 */
|
|
1640
|
-
townCodePrefix?: string[];
|
|
1641
|
-
/** 事故移交受理部门 */
|
|
1642
|
-
transferHandleDepartmentIn?: string[];
|
|
1643
|
-
/** 事故移交用户 */
|
|
1644
|
-
transferHandleFromUser?: string;
|
|
1645
|
-
/** 事故移交受理状态 */
|
|
1646
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
1647
|
-
/** 事故移交受理用户 */
|
|
1648
|
-
transferHandleUser?: string;
|
|
1649
|
-
/** 事故类型(In查询) */
|
|
1650
|
-
typeIn?: string[];
|
|
1651
|
-
/** 天气 */
|
|
1652
|
-
weather?: string[];
|
|
1653
|
-
/** 协警用户 */
|
|
1654
|
-
xj?: string;
|
|
1655
|
-
/** [当事人]证件号码 */
|
|
1656
|
-
zjhm?: string;
|
|
1657
|
-
}
|
|
1658
|
-
export declare class EntityDigest {
|
|
1659
|
-
digest: string;
|
|
1660
|
-
valid: boolean;
|
|
1661
|
-
}
|
|
1662
|
-
export declare class Evidence {
|
|
1663
|
-
/** 证据类型 */
|
|
1664
|
-
category: string;
|
|
1665
|
-
/** 内容 */
|
|
1666
|
-
content: string;
|
|
1667
|
-
/** 描述 */
|
|
1668
|
-
desc: string;
|
|
1669
|
-
/** 样例 */
|
|
1670
|
-
example: string;
|
|
1731
|
+
reportDeliveryDate: number;
|
|
1732
|
+
/** 送达说明 */
|
|
1733
|
+
reportDeliveryRemark: string;
|
|
1671
1734
|
/**
|
|
1672
|
-
*
|
|
1735
|
+
* 审核日期
|
|
1673
1736
|
* @format int64
|
|
1674
1737
|
*/
|
|
1675
|
-
|
|
1676
|
-
/**
|
|
1677
|
-
|
|
1738
|
+
reviewDate: number;
|
|
1739
|
+
/** 审核说明 */
|
|
1740
|
+
reviewRemark: string;
|
|
1741
|
+
/** 审核结果 (0-不予重新鉴定, 1-重新鉴定) */
|
|
1742
|
+
reviewResult: string;
|
|
1743
|
+
/** 事故编号 */
|
|
1744
|
+
sgbh: string;
|
|
1745
|
+
}
|
|
1746
|
+
/**
|
|
1747
|
+
* 滨江事故中队追踪记录DTO
|
|
1748
|
+
*/
|
|
1749
|
+
export declare class BinJiangSgzdTrackingRecordDTO {
|
|
1678
1750
|
/**
|
|
1679
|
-
*
|
|
1751
|
+
* 关联事故移交ID
|
|
1680
1752
|
* @format int64
|
|
1681
1753
|
*/
|
|
1682
|
-
|
|
1683
|
-
/** 证据文件类型 */
|
|
1684
|
-
type: string;
|
|
1685
|
-
/** 上传人 */
|
|
1686
|
-
user: string;
|
|
1687
|
-
}
|
|
1688
|
-
export declare class EvidenceDeleteRequest {
|
|
1689
|
-
/** 删除原因 */
|
|
1690
|
-
reason?: string;
|
|
1691
|
-
}
|
|
1692
|
-
export declare class EvidenceNonstandardRemindDTOReq {
|
|
1693
|
-
/** 业务编号 */
|
|
1694
|
-
code?: string;
|
|
1695
|
-
/** 业务类型 */
|
|
1696
|
-
codeType?: "ACCIDENT" | "ACD_MEDIATION" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
1697
|
-
/** 发送内容 */
|
|
1698
|
-
content?: string;
|
|
1754
|
+
accidentHandoverId: number;
|
|
1699
1755
|
/**
|
|
1700
1756
|
* 创建时间
|
|
1701
1757
|
* @format int64
|
|
1702
1758
|
*/
|
|
1703
|
-
createTime
|
|
1704
|
-
/** 创建人用户名 */
|
|
1705
|
-
createUser?: string;
|
|
1706
|
-
/**
|
|
1707
|
-
* 是否已删除
|
|
1708
|
-
* @example false
|
|
1709
|
-
*/
|
|
1710
|
-
deleted?: boolean;
|
|
1711
|
-
/** 数据签名 */
|
|
1712
|
-
digest?: EntityDigest;
|
|
1759
|
+
createTime: number;
|
|
1713
1760
|
/**
|
|
1714
|
-
*
|
|
1761
|
+
* 追踪日期
|
|
1715
1762
|
* @format int64
|
|
1716
1763
|
*/
|
|
1717
|
-
|
|
1718
|
-
/** 修改人用户名 */
|
|
1719
|
-
editUser?: string;
|
|
1720
|
-
/** 证据编码 */
|
|
1721
|
-
evidenceId?: number[];
|
|
1764
|
+
date: number;
|
|
1722
1765
|
/**
|
|
1723
|
-
*
|
|
1766
|
+
* 是否被删除
|
|
1724
1767
|
* @example false
|
|
1725
1768
|
*/
|
|
1726
|
-
|
|
1769
|
+
deleted: boolean;
|
|
1727
1770
|
/**
|
|
1728
|
-
*
|
|
1771
|
+
* 最近修改时间
|
|
1729
1772
|
* @format int64
|
|
1730
1773
|
*/
|
|
1731
|
-
|
|
1732
|
-
/**
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1774
|
+
editTime: number;
|
|
1775
|
+
/**
|
|
1776
|
+
* ID
|
|
1777
|
+
* @format int64
|
|
1778
|
+
*/
|
|
1779
|
+
id: number;
|
|
1780
|
+
/** 追踪方式 */
|
|
1781
|
+
method: string;
|
|
1782
|
+
/** 当事人到案信息列表 */
|
|
1783
|
+
partyAppearances: BinJiangSgzdPartyAppearanceDTO[];
|
|
1784
|
+
/** 当事人确认信息列表 */
|
|
1785
|
+
partyConfirmations: BinJiangSgzdPartyConfirmationDTO[];
|
|
1786
|
+
/** 当事人姓名 */
|
|
1787
|
+
partyName: string;
|
|
1788
|
+
/** 追踪说明 */
|
|
1789
|
+
remark: string;
|
|
1790
|
+
/** 事故编号 */
|
|
1791
|
+
sgbh: string;
|
|
1736
1792
|
}
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
codeType: "ACCIDENT" | "ACD_MEDIATION" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
1742
|
-
/** 发送内容 */
|
|
1743
|
-
content: string;
|
|
1793
|
+
/**
|
|
1794
|
+
* 黑名单用户
|
|
1795
|
+
*/
|
|
1796
|
+
export declare class BlockUser {
|
|
1744
1797
|
/**
|
|
1745
1798
|
* 创建时间
|
|
1746
1799
|
* @format int64
|
|
@@ -1762,106 +1815,661 @@ export declare class EvidenceNonstandardRemindDTORes {
|
|
|
1762
1815
|
editTime: number;
|
|
1763
1816
|
/** 修改人用户名 */
|
|
1764
1817
|
editUser: string;
|
|
1765
|
-
/** 证据编码 */
|
|
1766
|
-
evidenceId: number[];
|
|
1767
|
-
/**
|
|
1768
|
-
* 是否已处理
|
|
1769
|
-
* @example false
|
|
1770
|
-
*/
|
|
1771
|
-
handled: boolean;
|
|
1772
1818
|
/**
|
|
1773
1819
|
* 主键
|
|
1774
1820
|
* @format int64
|
|
1775
1821
|
*/
|
|
1776
1822
|
id: number;
|
|
1777
|
-
/**
|
|
1778
|
-
|
|
1779
|
-
/**
|
|
1780
|
-
|
|
1823
|
+
/** 身份证号码 */
|
|
1824
|
+
idCardNumber: string;
|
|
1825
|
+
/** 姓名 */
|
|
1826
|
+
name: string;
|
|
1827
|
+
/** 手机号码 */
|
|
1828
|
+
phone: string;
|
|
1829
|
+
/** 添加到黑名单原因 */
|
|
1830
|
+
reason: string;
|
|
1781
1831
|
}
|
|
1782
|
-
export declare
|
|
1783
|
-
|
|
1784
|
-
|
|
1832
|
+
export declare class CBViolation {
|
|
1833
|
+
/** 处罚种类 */
|
|
1834
|
+
cfzl?: string;
|
|
1835
|
+
/** 车辆分类 */
|
|
1836
|
+
clfl?: string;
|
|
1785
1837
|
/**
|
|
1786
|
-
*
|
|
1838
|
+
* 处理时间
|
|
1787
1839
|
* @format int64
|
|
1788
1840
|
*/
|
|
1789
|
-
|
|
1790
|
-
/**
|
|
1791
|
-
|
|
1841
|
+
clsj?: number;
|
|
1842
|
+
/** 当事人 */
|
|
1843
|
+
dsr?: string;
|
|
1844
|
+
/** 非机动车号牌种类 */
|
|
1845
|
+
fjdchpzl?: string;
|
|
1846
|
+
/** 发现机关 */
|
|
1847
|
+
fxjg?: string;
|
|
1848
|
+
/** 号牌号码 */
|
|
1849
|
+
hphm?: string;
|
|
1850
|
+
/** 号牌种类 */
|
|
1851
|
+
hpzl?: string;
|
|
1852
|
+
/** 驾驶证号 */
|
|
1853
|
+
jszh?: string;
|
|
1854
|
+
/** 交通方式 */
|
|
1855
|
+
jtfs?: string;
|
|
1856
|
+
/** 人员分类 */
|
|
1857
|
+
ryfl?: string;
|
|
1858
|
+
/** 违法行为 */
|
|
1859
|
+
wfxw?: string;
|
|
1860
|
+
/** 证件名称 */
|
|
1861
|
+
zjmc?: string;
|
|
1862
|
+
/** 执勤民警 */
|
|
1863
|
+
zqmj?: string;
|
|
1864
|
+
}
|
|
1865
|
+
export declare class CircuitBreakerCheckBatchRequest {
|
|
1792
1866
|
/**
|
|
1793
|
-
*
|
|
1794
|
-
* @
|
|
1867
|
+
* 核定载客 默认0
|
|
1868
|
+
* @format int64
|
|
1795
1869
|
*/
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1870
|
+
hdzk?: number;
|
|
1871
|
+
/** 处罚数据 */
|
|
1872
|
+
violations?: CBViolation[];
|
|
1873
|
+
}
|
|
1874
|
+
export declare class CircuitBreakerCheckRequest {
|
|
1801
1875
|
/**
|
|
1802
|
-
*
|
|
1876
|
+
* 核定载客 默认0
|
|
1803
1877
|
* @format int64
|
|
1804
1878
|
*/
|
|
1805
|
-
|
|
1806
|
-
/**
|
|
1807
|
-
|
|
1879
|
+
hdzk?: number;
|
|
1880
|
+
/** 处罚数据 */
|
|
1881
|
+
violation?: CBViolation;
|
|
1882
|
+
}
|
|
1883
|
+
export declare class CircuitBreakerCheckResult {
|
|
1808
1884
|
/**
|
|
1809
|
-
*
|
|
1885
|
+
* 熔断数值差值
|
|
1810
1886
|
* @format int64
|
|
1811
1887
|
*/
|
|
1812
|
-
|
|
1813
|
-
|
|
1888
|
+
breakDelta: number;
|
|
1889
|
+
/** 熔断数值名称 */
|
|
1890
|
+
breakDeltaName: string;
|
|
1891
|
+
/** 熔断规则名称 */
|
|
1892
|
+
breakRule: string;
|
|
1893
|
+
/**
|
|
1894
|
+
* 是否熔断
|
|
1895
|
+
* @example false
|
|
1896
|
+
*/
|
|
1897
|
+
circuitBreak: boolean;
|
|
1898
|
+
/** 熔断原因 */
|
|
1899
|
+
reason: string;
|
|
1814
1900
|
}
|
|
1815
|
-
export declare class
|
|
1816
|
-
company: string;
|
|
1901
|
+
export declare class CircuitBreakerCheckResultBatchDetail {
|
|
1817
1902
|
/**
|
|
1818
|
-
*
|
|
1903
|
+
* 熔断数值差值
|
|
1819
1904
|
* @format int64
|
|
1820
1905
|
*/
|
|
1821
|
-
|
|
1822
|
-
/**
|
|
1823
|
-
|
|
1906
|
+
breakDelta: number;
|
|
1907
|
+
/** 熔断数值名称 */
|
|
1908
|
+
breakDeltaName: string;
|
|
1909
|
+
/** 熔断规则名称 */
|
|
1910
|
+
breakRule: string;
|
|
1824
1911
|
/**
|
|
1825
|
-
*
|
|
1912
|
+
* 是否熔断
|
|
1826
1913
|
* @example false
|
|
1827
1914
|
*/
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1915
|
+
circuitBreak: boolean;
|
|
1916
|
+
/** 熔断原因 */
|
|
1917
|
+
reason: string;
|
|
1918
|
+
/** 触发规则 以wfxw为key */
|
|
1919
|
+
rules: Record<string, any>;
|
|
1920
|
+
}
|
|
1921
|
+
export declare class CircuitBreakerCheckResultDetail {
|
|
1833
1922
|
/**
|
|
1834
|
-
*
|
|
1923
|
+
* 熔断数值差值
|
|
1835
1924
|
* @format int64
|
|
1836
1925
|
*/
|
|
1837
|
-
|
|
1838
|
-
/**
|
|
1839
|
-
|
|
1926
|
+
breakDelta: number;
|
|
1927
|
+
/** 熔断数值名称 */
|
|
1928
|
+
breakDeltaName: string;
|
|
1929
|
+
/** 熔断规则名称 */
|
|
1930
|
+
breakRule: string;
|
|
1840
1931
|
/**
|
|
1841
|
-
*
|
|
1842
|
-
* @
|
|
1932
|
+
* 是否熔断
|
|
1933
|
+
* @example false
|
|
1843
1934
|
*/
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
latitude: number;
|
|
1850
|
-
/** @format double */
|
|
1851
|
-
longitude: number;
|
|
1852
|
-
}
|
|
1853
|
-
export declare class ListEvidenceRequest {
|
|
1854
|
-
/** 文书编号 */
|
|
1855
|
-
code?: string;
|
|
1856
|
-
/** 文书类型 */
|
|
1857
|
-
codeType?: "ACCIDENT" | "ACD_MEDIATION" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
1858
|
-
/** 证据key */
|
|
1859
|
-
keys?: string[];
|
|
1935
|
+
circuitBreak: boolean;
|
|
1936
|
+
/** 熔断原因 */
|
|
1937
|
+
reason: string;
|
|
1938
|
+
/** 触发规则 */
|
|
1939
|
+
rules: CircuitBreakerRuleResult[];
|
|
1860
1940
|
}
|
|
1861
|
-
export declare class
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1941
|
+
export declare class CircuitBreakerCompareBaseValue {
|
|
1942
|
+
/**
|
|
1943
|
+
* 基准值
|
|
1944
|
+
* @format int64
|
|
1945
|
+
*/
|
|
1946
|
+
baseValue: number;
|
|
1947
|
+
/**
|
|
1948
|
+
* 是否熔断
|
|
1949
|
+
* @example false
|
|
1950
|
+
*/
|
|
1951
|
+
circuitBreak: boolean;
|
|
1952
|
+
/** 比较 */
|
|
1953
|
+
compare: "eq" | "gte" | "lte";
|
|
1954
|
+
/** 名称 */
|
|
1955
|
+
name: string;
|
|
1956
|
+
/**
|
|
1957
|
+
* 实际值
|
|
1958
|
+
* @format int64
|
|
1959
|
+
*/
|
|
1960
|
+
value: number;
|
|
1961
|
+
}
|
|
1962
|
+
export declare class CircuitBreakerRuleResult {
|
|
1963
|
+
/**
|
|
1964
|
+
* 是否过滤车辆类型
|
|
1965
|
+
* @example false
|
|
1966
|
+
*/
|
|
1967
|
+
cllxFilter: boolean;
|
|
1968
|
+
/** 车辆类型大类(交通方式) 例如 K H T 等 */
|
|
1969
|
+
cllxGroup: string;
|
|
1970
|
+
/**
|
|
1971
|
+
* 是否过滤车辆分类(交通方式)分组
|
|
1972
|
+
* @example false
|
|
1973
|
+
*/
|
|
1974
|
+
cllxGroupFilter: boolean;
|
|
1975
|
+
/**
|
|
1976
|
+
* 是否包含车辆分类(交通方式)分组
|
|
1977
|
+
* @example false
|
|
1978
|
+
*/
|
|
1979
|
+
cllxGroupInclude: boolean;
|
|
1980
|
+
/**
|
|
1981
|
+
* 是否包含车辆类型
|
|
1982
|
+
* @example false
|
|
1983
|
+
*/
|
|
1984
|
+
cllxInclude: boolean;
|
|
1985
|
+
/** 车辆类型列表 */
|
|
1986
|
+
cllxList: string[];
|
|
1987
|
+
/** 规则比较结果 */
|
|
1988
|
+
compareResults: CircuitBreakerCompareBaseValue[];
|
|
1989
|
+
/**
|
|
1990
|
+
* 创建时间
|
|
1991
|
+
* @format int64
|
|
1992
|
+
*/
|
|
1993
|
+
createTime: number;
|
|
1994
|
+
/** 创建人用户名 */
|
|
1995
|
+
createUser: string;
|
|
1996
|
+
/**
|
|
1997
|
+
* 是否已删除
|
|
1998
|
+
* @example false
|
|
1999
|
+
*/
|
|
2000
|
+
deleted: boolean;
|
|
2001
|
+
/** 规则描述 */
|
|
2002
|
+
description: string;
|
|
2003
|
+
/** 数据签名 */
|
|
2004
|
+
digest: EntityDigest;
|
|
2005
|
+
/**
|
|
2006
|
+
* 是否禁用
|
|
2007
|
+
* @example false
|
|
2008
|
+
*/
|
|
2009
|
+
disabled: boolean;
|
|
2010
|
+
/**
|
|
2011
|
+
* 修改时间
|
|
2012
|
+
* @format int64
|
|
2013
|
+
*/
|
|
2014
|
+
editTime: number;
|
|
2015
|
+
/** 修改人用户名 */
|
|
2016
|
+
editUser: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* 是否过滤号牌种类
|
|
2019
|
+
* @example false
|
|
2020
|
+
*/
|
|
2021
|
+
hpzlFilter: boolean;
|
|
2022
|
+
/**
|
|
2023
|
+
* 是否包含号牌种类
|
|
2024
|
+
* @example false
|
|
2025
|
+
*/
|
|
2026
|
+
hpzlInclude: boolean;
|
|
2027
|
+
/** 号牌种类列表 */
|
|
2028
|
+
hpzlList: string[];
|
|
2029
|
+
/**
|
|
2030
|
+
* 主键
|
|
2031
|
+
* @format int64
|
|
2032
|
+
*/
|
|
2033
|
+
id: number;
|
|
2034
|
+
/** ISP API */
|
|
2035
|
+
ispApis: string[];
|
|
2036
|
+
/**
|
|
2037
|
+
* 是否限制同一大队
|
|
2038
|
+
* @example false
|
|
2039
|
+
*/
|
|
2040
|
+
limitSameDadui: boolean;
|
|
2041
|
+
/**
|
|
2042
|
+
* 是否限制同一当事人
|
|
2043
|
+
* @example false
|
|
2044
|
+
*/
|
|
2045
|
+
limitSameDsr: boolean;
|
|
2046
|
+
/**
|
|
2047
|
+
* 是否限制同一民警
|
|
2048
|
+
* @example false
|
|
2049
|
+
*/
|
|
2050
|
+
limitSamePolice: boolean;
|
|
2051
|
+
/**
|
|
2052
|
+
* 是否限制同一车辆
|
|
2053
|
+
* @example false
|
|
2054
|
+
*/
|
|
2055
|
+
limitSameVeh: boolean;
|
|
2056
|
+
/**
|
|
2057
|
+
* 是否限制同一违法行为
|
|
2058
|
+
* @example false
|
|
2059
|
+
*/
|
|
2060
|
+
limitSameWfxw: boolean;
|
|
2061
|
+
/** 限制时间范围 */
|
|
2062
|
+
limitTimeRange: "daily" | "monthly";
|
|
2063
|
+
/** 规则名称 */
|
|
2064
|
+
name: string;
|
|
2065
|
+
/** 基础统计值(用于同一事故多个处罚) */
|
|
2066
|
+
plusValues: Record<string, number>;
|
|
2067
|
+
/**
|
|
2068
|
+
* 是否过滤人员分类
|
|
2069
|
+
* @example false
|
|
2070
|
+
*/
|
|
2071
|
+
ryflFilter: boolean;
|
|
2072
|
+
/**
|
|
2073
|
+
* 是否包含人员分类
|
|
2074
|
+
* @example false
|
|
2075
|
+
*/
|
|
2076
|
+
ryflInclude: boolean;
|
|
2077
|
+
/** 人员分类列表 */
|
|
2078
|
+
ryflList: string[];
|
|
2079
|
+
/**
|
|
2080
|
+
* 是否过滤证件名称
|
|
2081
|
+
* @example false
|
|
2082
|
+
*/
|
|
2083
|
+
sfzmmcFilter: boolean;
|
|
2084
|
+
/**
|
|
2085
|
+
* 是否包含证件名称
|
|
2086
|
+
* @example false
|
|
2087
|
+
*/
|
|
2088
|
+
sfzmmcInclude: boolean;
|
|
2089
|
+
/** 证件名称列表 */
|
|
2090
|
+
sfzmmcList: string[];
|
|
2091
|
+
/** 统计结果比对 */
|
|
2092
|
+
sqlResults: VioCircuitBreakerSqlSingleDTORes[];
|
|
2093
|
+
/**
|
|
2094
|
+
* 是否过滤违法行为
|
|
2095
|
+
* @example false
|
|
2096
|
+
*/
|
|
2097
|
+
wfxwFilter: boolean;
|
|
2098
|
+
/**
|
|
2099
|
+
* 是否包含违法行为
|
|
2100
|
+
* @example false
|
|
2101
|
+
*/
|
|
2102
|
+
wfxwInclude: boolean;
|
|
2103
|
+
/** 违法行为列表 */
|
|
2104
|
+
wfxwList: string[];
|
|
2105
|
+
/**
|
|
2106
|
+
* 是否用作工作量统计
|
|
2107
|
+
* @example false
|
|
2108
|
+
*/
|
|
2109
|
+
workload: boolean;
|
|
2110
|
+
}
|
|
2111
|
+
export declare class DebugPoliceDailyWorkloadBean {
|
|
2112
|
+
/** 部门代码 */
|
|
2113
|
+
department?: string;
|
|
2114
|
+
/** 执勤民警 */
|
|
2115
|
+
zqmj?: string;
|
|
2116
|
+
}
|
|
2117
|
+
export declare class DiscardAccidentQueryBean {
|
|
2118
|
+
/** 事故地址查询。支持模糊查询 */
|
|
2119
|
+
address?: string;
|
|
2120
|
+
/**
|
|
2121
|
+
* 警员到警用时截止(单位: 秒)
|
|
2122
|
+
* @format int64
|
|
2123
|
+
*/
|
|
2124
|
+
arriveConsumeTimeLessThan?: number;
|
|
2125
|
+
/**
|
|
2126
|
+
* 警员到警用时起始(单位: 秒)
|
|
2127
|
+
* @format int64
|
|
2128
|
+
*/
|
|
2129
|
+
arriveConsumeTimeRatherThan?: number;
|
|
2130
|
+
/** [当事人]车架号 */
|
|
2131
|
+
cjh?: string;
|
|
2132
|
+
/**
|
|
2133
|
+
* 是否已删除
|
|
2134
|
+
* @example false
|
|
2135
|
+
*/
|
|
2136
|
+
deleted?: boolean;
|
|
2137
|
+
/** 部门代码 */
|
|
2138
|
+
department?: string;
|
|
2139
|
+
/** 部门代码(In查询) */
|
|
2140
|
+
departmentIn?: string[];
|
|
2141
|
+
/**
|
|
2142
|
+
* 是否即时宣教
|
|
2143
|
+
* @example false
|
|
2144
|
+
*/
|
|
2145
|
+
educationStatus?: boolean;
|
|
2146
|
+
/**
|
|
2147
|
+
* 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false
|
|
2148
|
+
* @example false
|
|
2149
|
+
*/
|
|
2150
|
+
filterByAdminDepartment?: boolean;
|
|
2151
|
+
/** 即时指导状态列表 */
|
|
2152
|
+
guidanceStatusIn?: string[];
|
|
2153
|
+
/** 即时定则移交状态列表 */
|
|
2154
|
+
handoverStatusIn?: string[];
|
|
2155
|
+
/** [当事人]号牌号码 */
|
|
2156
|
+
hphm?: string;
|
|
2157
|
+
/** [当事人]号牌种类 */
|
|
2158
|
+
hpzl?: string;
|
|
2159
|
+
/** 主键 */
|
|
2160
|
+
ids?: number[];
|
|
2161
|
+
/**
|
|
2162
|
+
* 是否即时吹哨
|
|
2163
|
+
* @example false
|
|
2164
|
+
*/
|
|
2165
|
+
immediateWhistle?: boolean;
|
|
2166
|
+
/**
|
|
2167
|
+
* 是否包含已删除文件
|
|
2168
|
+
* @example false
|
|
2169
|
+
*/
|
|
2170
|
+
includeDeleted?: boolean;
|
|
2171
|
+
/**
|
|
2172
|
+
* 是否包含子部门
|
|
2173
|
+
* @example false
|
|
2174
|
+
*/
|
|
2175
|
+
includeSubDepartment?: boolean;
|
|
2176
|
+
/** [当事人]涉及的保险公司(代码) */
|
|
2177
|
+
insuranceCompany?: string;
|
|
2178
|
+
/** 交通方式。支持多选 */
|
|
2179
|
+
jtfsIn?: string[];
|
|
2180
|
+
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
2181
|
+
jtfsLike?: string;
|
|
2182
|
+
/**
|
|
2183
|
+
* 就医检查报告是否上传
|
|
2184
|
+
* @example false
|
|
2185
|
+
*/
|
|
2186
|
+
medicalReportUploaded?: boolean;
|
|
2187
|
+
/**
|
|
2188
|
+
* 是否必须经过部门条件过滤
|
|
2189
|
+
* @example false
|
|
2190
|
+
*/
|
|
2191
|
+
mustFilterByDepartment?: boolean;
|
|
2192
|
+
orderBy?: string[];
|
|
2193
|
+
/** 事故来源 */
|
|
2194
|
+
origin?: string[];
|
|
2195
|
+
/** @format int32 */
|
|
2196
|
+
pageIndex?: number;
|
|
2197
|
+
/** @format int32 */
|
|
2198
|
+
pageSize?: number;
|
|
2199
|
+
/** [当事人]电话 */
|
|
2200
|
+
phone?: string;
|
|
2201
|
+
/** 民警用户 */
|
|
2202
|
+
police?: string;
|
|
2203
|
+
/** 事故业务编号(processUid) */
|
|
2204
|
+
processBusinessKey?: string;
|
|
2205
|
+
processCompletedTimeIsNull?: boolean;
|
|
2206
|
+
/** 事故流程编号 */
|
|
2207
|
+
processId?: string;
|
|
2208
|
+
/** 事故业务编号 */
|
|
2209
|
+
processUid?: string;
|
|
2210
|
+
/**
|
|
2211
|
+
* 是否即时处罚
|
|
2212
|
+
* @example false
|
|
2213
|
+
*/
|
|
2214
|
+
punishmentStatus?: boolean;
|
|
2215
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
2216
|
+
rescueType?: string;
|
|
2217
|
+
/**
|
|
2218
|
+
* [当事人]是否出险
|
|
2219
|
+
* @example false
|
|
2220
|
+
*/
|
|
2221
|
+
sfcx?: boolean;
|
|
2222
|
+
/** 事故编号 */
|
|
2223
|
+
sgbh?: string;
|
|
2224
|
+
/** 事故编号(In查询) */
|
|
2225
|
+
sgbhIn?: string[];
|
|
2226
|
+
/** 事故情形。支持多选 */
|
|
2227
|
+
sgqxIn?: string[];
|
|
2228
|
+
/** 事故形态。支持多选 */
|
|
2229
|
+
sgxtIn?: string[];
|
|
2230
|
+
/** [当事人]事故责任 */
|
|
2231
|
+
sgzrIn?: string[];
|
|
2232
|
+
/** 事故状态 */
|
|
2233
|
+
stateIn?: string[];
|
|
2234
|
+
/**
|
|
2235
|
+
* 事故发生时间起始
|
|
2236
|
+
* @format int64
|
|
2237
|
+
*/
|
|
2238
|
+
timeBegin?: number;
|
|
2239
|
+
/**
|
|
2240
|
+
* 事故发生时间截止
|
|
2241
|
+
* @format int64
|
|
2242
|
+
*/
|
|
2243
|
+
timeEnd?: number;
|
|
2244
|
+
/** 辖区。支持多选 */
|
|
2245
|
+
townCode?: string[];
|
|
2246
|
+
/** 辖区前缀匹配。支持多个匹配 */
|
|
2247
|
+
townCodePrefix?: string[];
|
|
2248
|
+
/** 事故类型(In查询) */
|
|
2249
|
+
typeIn?: string[];
|
|
2250
|
+
/** 天气 */
|
|
2251
|
+
weather?: string[];
|
|
2252
|
+
/** 协警用户 */
|
|
2253
|
+
xj?: string;
|
|
2254
|
+
/** [当事人]证件号码 */
|
|
2255
|
+
zjhm?: string;
|
|
2256
|
+
}
|
|
2257
|
+
export declare class EntityDigest {
|
|
2258
|
+
digest: string;
|
|
2259
|
+
valid: boolean;
|
|
2260
|
+
}
|
|
2261
|
+
export declare class Evidence {
|
|
2262
|
+
/** 证据类型 */
|
|
2263
|
+
category: string;
|
|
2264
|
+
/** 内容 */
|
|
2265
|
+
content: string;
|
|
2266
|
+
/** 描述 */
|
|
2267
|
+
desc: string;
|
|
2268
|
+
/** 样例 */
|
|
2269
|
+
example: string;
|
|
2270
|
+
/**
|
|
2271
|
+
* ID
|
|
2272
|
+
* @format int64
|
|
2273
|
+
*/
|
|
2274
|
+
id: number;
|
|
2275
|
+
/** 标识相同key的证据将被覆盖更新 */
|
|
2276
|
+
key: string;
|
|
2277
|
+
/**
|
|
2278
|
+
* 上传时间
|
|
2279
|
+
* @format int64
|
|
2280
|
+
*/
|
|
2281
|
+
time: number;
|
|
2282
|
+
/** 证据文件类型 */
|
|
2283
|
+
type: string;
|
|
2284
|
+
/** 上传人 */
|
|
2285
|
+
user: string;
|
|
2286
|
+
}
|
|
2287
|
+
export declare class EvidenceDeleteRequest {
|
|
2288
|
+
/** 删除原因 */
|
|
2289
|
+
reason?: string;
|
|
2290
|
+
}
|
|
2291
|
+
export declare class EvidenceNonstandardRemindDTOReq {
|
|
2292
|
+
/** 业务编号 */
|
|
2293
|
+
code?: string;
|
|
2294
|
+
/** 业务类型 */
|
|
2295
|
+
codeType?: "ACCIDENT" | "ACD_MEDIATION" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
2296
|
+
/** 发送内容 */
|
|
2297
|
+
content?: string;
|
|
2298
|
+
/**
|
|
2299
|
+
* 创建时间
|
|
2300
|
+
* @format int64
|
|
2301
|
+
*/
|
|
2302
|
+
createTime?: number;
|
|
2303
|
+
/** 创建人用户名 */
|
|
2304
|
+
createUser?: string;
|
|
2305
|
+
/**
|
|
2306
|
+
* 是否已删除
|
|
2307
|
+
* @example false
|
|
2308
|
+
*/
|
|
2309
|
+
deleted?: boolean;
|
|
2310
|
+
/** 数据签名 */
|
|
2311
|
+
digest?: EntityDigest;
|
|
2312
|
+
/**
|
|
2313
|
+
* 修改时间
|
|
2314
|
+
* @format int64
|
|
2315
|
+
*/
|
|
2316
|
+
editTime?: number;
|
|
2317
|
+
/** 修改人用户名 */
|
|
2318
|
+
editUser?: string;
|
|
2319
|
+
/** 证据编码 */
|
|
2320
|
+
evidenceId?: number[];
|
|
2321
|
+
/**
|
|
2322
|
+
* 是否已处理
|
|
2323
|
+
* @example false
|
|
2324
|
+
*/
|
|
2325
|
+
handled?: boolean;
|
|
2326
|
+
/**
|
|
2327
|
+
* 主键
|
|
2328
|
+
* @format int64
|
|
2329
|
+
*/
|
|
2330
|
+
id?: number;
|
|
2331
|
+
/** 接受人 */
|
|
2332
|
+
receiver?: string;
|
|
2333
|
+
/** 发送人 */
|
|
2334
|
+
sender?: string;
|
|
2335
|
+
}
|
|
2336
|
+
export declare class EvidenceNonstandardRemindDTORes {
|
|
2337
|
+
/** 业务编号 */
|
|
2338
|
+
code: string;
|
|
2339
|
+
/** 业务类型 */
|
|
2340
|
+
codeType: "ACCIDENT" | "ACD_MEDIATION" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
2341
|
+
/** 发送内容 */
|
|
2342
|
+
content: string;
|
|
2343
|
+
/**
|
|
2344
|
+
* 创建时间
|
|
2345
|
+
* @format int64
|
|
2346
|
+
*/
|
|
2347
|
+
createTime: number;
|
|
2348
|
+
/** 创建人用户名 */
|
|
2349
|
+
createUser: string;
|
|
2350
|
+
/**
|
|
2351
|
+
* 是否已删除
|
|
2352
|
+
* @example false
|
|
2353
|
+
*/
|
|
2354
|
+
deleted: boolean;
|
|
2355
|
+
/** 数据签名 */
|
|
2356
|
+
digest: EntityDigest;
|
|
2357
|
+
/**
|
|
2358
|
+
* 修改时间
|
|
2359
|
+
* @format int64
|
|
2360
|
+
*/
|
|
2361
|
+
editTime: number;
|
|
2362
|
+
/** 修改人用户名 */
|
|
2363
|
+
editUser: string;
|
|
2364
|
+
/** 证据编码 */
|
|
2365
|
+
evidenceId: number[];
|
|
2366
|
+
/**
|
|
2367
|
+
* 是否已处理
|
|
2368
|
+
* @example false
|
|
2369
|
+
*/
|
|
2370
|
+
handled: boolean;
|
|
2371
|
+
/**
|
|
2372
|
+
* 主键
|
|
2373
|
+
* @format int64
|
|
2374
|
+
*/
|
|
2375
|
+
id: number;
|
|
2376
|
+
/** 接受人 */
|
|
2377
|
+
receiver: string;
|
|
2378
|
+
/** 发送人 */
|
|
2379
|
+
sender: string;
|
|
2380
|
+
}
|
|
2381
|
+
export declare class HandoverMonitorRecord {
|
|
2382
|
+
/** 监控编号 */
|
|
2383
|
+
monitorId: string;
|
|
2384
|
+
/**
|
|
2385
|
+
* 监控时间
|
|
2386
|
+
* @format int64
|
|
2387
|
+
*/
|
|
2388
|
+
monitorTime: number;
|
|
2389
|
+
}
|
|
2390
|
+
export declare type InputStream = any;
|
|
2391
|
+
export declare class InsuranceUserReq {
|
|
2392
|
+
company: string;
|
|
2393
|
+
/**
|
|
2394
|
+
* 创建时间
|
|
2395
|
+
* @format int64
|
|
2396
|
+
*/
|
|
2397
|
+
createTime?: number;
|
|
2398
|
+
/** 创建人用户名 */
|
|
2399
|
+
createUser?: string;
|
|
2400
|
+
/**
|
|
2401
|
+
* 是否已删除
|
|
2402
|
+
* @example false
|
|
2403
|
+
*/
|
|
2404
|
+
deleted?: boolean;
|
|
2405
|
+
departments: string[];
|
|
2406
|
+
/** 数据签名 */
|
|
2407
|
+
digest?: EntityDigest;
|
|
2408
|
+
disabled?: boolean;
|
|
2409
|
+
/**
|
|
2410
|
+
* 修改时间
|
|
2411
|
+
* @format int64
|
|
2412
|
+
*/
|
|
2413
|
+
editTime?: number;
|
|
2414
|
+
/** 修改人用户名 */
|
|
2415
|
+
editUser?: string;
|
|
2416
|
+
/**
|
|
2417
|
+
* 主键
|
|
2418
|
+
* @format int64
|
|
2419
|
+
*/
|
|
2420
|
+
id?: number;
|
|
2421
|
+
user: string;
|
|
2422
|
+
}
|
|
2423
|
+
export declare class InsuranceUserRes {
|
|
2424
|
+
company: string;
|
|
2425
|
+
/**
|
|
2426
|
+
* 创建时间
|
|
2427
|
+
* @format int64
|
|
2428
|
+
*/
|
|
2429
|
+
createTime: number;
|
|
2430
|
+
/** 创建人用户名 */
|
|
2431
|
+
createUser: string;
|
|
2432
|
+
/**
|
|
2433
|
+
* 是否已删除
|
|
2434
|
+
* @example false
|
|
2435
|
+
*/
|
|
2436
|
+
deleted: boolean;
|
|
2437
|
+
departments: string[];
|
|
2438
|
+
/** 数据签名 */
|
|
2439
|
+
digest: EntityDigest;
|
|
2440
|
+
disabled: boolean;
|
|
2441
|
+
/**
|
|
2442
|
+
* 修改时间
|
|
2443
|
+
* @format int64
|
|
2444
|
+
*/
|
|
2445
|
+
editTime: number;
|
|
2446
|
+
/** 修改人用户名 */
|
|
2447
|
+
editUser: string;
|
|
2448
|
+
/**
|
|
2449
|
+
* 主键
|
|
2450
|
+
* @format int64
|
|
2451
|
+
*/
|
|
2452
|
+
id: number;
|
|
2453
|
+
user: string;
|
|
2454
|
+
}
|
|
2455
|
+
export declare class LatlngPoint {
|
|
2456
|
+
/** @format double */
|
|
2457
|
+
latitude: number;
|
|
2458
|
+
/** @format double */
|
|
2459
|
+
longitude: number;
|
|
2460
|
+
}
|
|
2461
|
+
export declare class ListEvidenceRequest {
|
|
2462
|
+
/** 文书编号 */
|
|
2463
|
+
code?: string;
|
|
2464
|
+
/** 文书类型 */
|
|
2465
|
+
codeType?: "ACCIDENT" | "ACD_MEDIATION" | "FORCE" | "IMMEDIATE" | "INSURANCE" | "POLICE_JJD" | "PROCESS" | "SERIAL" | "SURVEIL" | "VIOLATION" | "VIO_NOTIFY";
|
|
2466
|
+
/** 证据key */
|
|
2467
|
+
keys?: string[];
|
|
2468
|
+
}
|
|
2469
|
+
export declare class ModelAndView {
|
|
2470
|
+
empty: boolean;
|
|
2471
|
+
model: any;
|
|
2472
|
+
modelMap: Record<string, any>;
|
|
1865
2473
|
reference: boolean;
|
|
1866
2474
|
status: "ACCEPTED" | "ALREADY_REPORTED" | "BAD_GATEWAY" | "BAD_REQUEST" | "BANDWIDTH_LIMIT_EXCEEDED" | "CHECKPOINT" | "CONFLICT" | "CONTINUE" | "CREATED" | "DESTINATION_LOCKED" | "EXPECTATION_FAILED" | "FAILED_DEPENDENCY" | "FORBIDDEN" | "FOUND" | "GATEWAY_TIMEOUT" | "GONE" | "HTTP_VERSION_NOT_SUPPORTED" | "IM_USED" | "INSUFFICIENT_SPACE_ON_RESOURCE" | "INSUFFICIENT_STORAGE" | "INTERNAL_SERVER_ERROR" | "I_AM_A_TEAPOT" | "LENGTH_REQUIRED" | "LOCKED" | "LOOP_DETECTED" | "METHOD_FAILURE" | "METHOD_NOT_ALLOWED" | "MOVED_PERMANENTLY" | "MOVED_TEMPORARILY" | "MULTIPLE_CHOICES" | "MULTI_STATUS" | "NETWORK_AUTHENTICATION_REQUIRED" | "NON_AUTHORITATIVE_INFORMATION" | "NOT_ACCEPTABLE" | "NOT_EXTENDED" | "NOT_FOUND" | "NOT_IMPLEMENTED" | "NOT_MODIFIED" | "NO_CONTENT" | "OK" | "PARTIAL_CONTENT" | "PAYLOAD_TOO_LARGE" | "PAYMENT_REQUIRED" | "PERMANENT_REDIRECT" | "PRECONDITION_FAILED" | "PRECONDITION_REQUIRED" | "PROCESSING" | "PROXY_AUTHENTICATION_REQUIRED" | "REQUESTED_RANGE_NOT_SATISFIABLE" | "REQUEST_ENTITY_TOO_LARGE" | "REQUEST_HEADER_FIELDS_TOO_LARGE" | "REQUEST_TIMEOUT" | "REQUEST_URI_TOO_LONG" | "RESET_CONTENT" | "SEE_OTHER" | "SERVICE_UNAVAILABLE" | "SWITCHING_PROTOCOLS" | "TEMPORARY_REDIRECT" | "TOO_EARLY" | "TOO_MANY_REQUESTS" | "UNAUTHORIZED" | "UNAVAILABLE_FOR_LEGAL_REASONS" | "UNPROCESSABLE_ENTITY" | "UNSUPPORTED_MEDIA_TYPE" | "UPGRADE_REQUIRED" | "URI_TOO_LONG" | "USE_PROXY" | "VARIANT_ALSO_NEGOTIATES";
|
|
1867
2475
|
view: View;
|
|
@@ -1894,6 +2502,15 @@ export declare class NoticeInfoRequest {
|
|
|
1894
2502
|
*/
|
|
1895
2503
|
wechatNotice?: boolean;
|
|
1896
2504
|
}
|
|
2505
|
+
export declare class PageResultAccidentBinJiangImmediateDTO {
|
|
2506
|
+
/** 列表 */
|
|
2507
|
+
list: AccidentBinJiangImmediateDTO[];
|
|
2508
|
+
/**
|
|
2509
|
+
* 总量
|
|
2510
|
+
* @format int64
|
|
2511
|
+
*/
|
|
2512
|
+
total: number;
|
|
2513
|
+
}
|
|
1897
2514
|
export declare class PageResultAccidentDTO {
|
|
1898
2515
|
list: AccidentDTORes[];
|
|
1899
2516
|
/** @format int64 */
|
|
@@ -1919,6 +2536,15 @@ export declare class PageResultAccidentUserInsuranceDTO {
|
|
|
1919
2536
|
/** @format int64 */
|
|
1920
2537
|
total: number;
|
|
1921
2538
|
}
|
|
2539
|
+
export declare class PageResultBinJiangSgzdAccidentHandoverDTO {
|
|
2540
|
+
/** 列表 */
|
|
2541
|
+
list: BinJiangSgzdAccidentHandoverDTO[];
|
|
2542
|
+
/**
|
|
2543
|
+
* 总量
|
|
2544
|
+
* @format int64
|
|
2545
|
+
*/
|
|
2546
|
+
total: number;
|
|
2547
|
+
}
|
|
1922
2548
|
export declare class PageResultBlockUser {
|
|
1923
2549
|
list: BlockUser[];
|
|
1924
2550
|
/** @format int64 */
|
|
@@ -2484,6 +3110,222 @@ export declare class ViolationCircuitBreakerQueryBean {
|
|
|
2484
3110
|
*/
|
|
2485
3111
|
workload?: boolean;
|
|
2486
3112
|
}
|
|
3113
|
+
export declare class BinjiangImmediateListParams {
|
|
3114
|
+
/**
|
|
3115
|
+
* 创建时间 大于等于
|
|
3116
|
+
* @format int64
|
|
3117
|
+
*/
|
|
3118
|
+
createTimeGte?: number;
|
|
3119
|
+
/**
|
|
3120
|
+
* 创建时间 小于
|
|
3121
|
+
* @format int64
|
|
3122
|
+
*/
|
|
3123
|
+
createTimeLt?: number;
|
|
3124
|
+
/** 创建人 */
|
|
3125
|
+
createUser?: string;
|
|
3126
|
+
/** 是否删除 */
|
|
3127
|
+
deleted?: boolean;
|
|
3128
|
+
/** 部门代码 */
|
|
3129
|
+
department?: string;
|
|
3130
|
+
/** 部门代码(批量) */
|
|
3131
|
+
departmentIn?: string[];
|
|
3132
|
+
/** 部门代码是否为空 */
|
|
3133
|
+
departmentIsNull?: boolean;
|
|
3134
|
+
/** 处置方式(1-浙里快处, 2-警务通开具, 3-自行协商, 4-移交事故中队) */
|
|
3135
|
+
disposalResult?: string[];
|
|
3136
|
+
/** 处置民警ID */
|
|
3137
|
+
disposalUser?: string;
|
|
3138
|
+
/**
|
|
3139
|
+
* 最近修改时间 大于等于
|
|
3140
|
+
* @format int64
|
|
3141
|
+
*/
|
|
3142
|
+
editTimeGte?: number;
|
|
3143
|
+
/**
|
|
3144
|
+
* 最近修改时间 小于
|
|
3145
|
+
* @format int64
|
|
3146
|
+
*/
|
|
3147
|
+
editTimeLt?: number;
|
|
3148
|
+
/** 修改人 */
|
|
3149
|
+
editUser?: string;
|
|
3150
|
+
/** 是否宣教 */
|
|
3151
|
+
educationStatus?: boolean;
|
|
3152
|
+
/** 按ID批量排除 */
|
|
3153
|
+
excludeIds?: number[];
|
|
3154
|
+
/** 民警指导状态 (0-无须指导, 1-待指派, 2-已指派, 3-已完成) */
|
|
3155
|
+
guidanceStatus?: string[];
|
|
3156
|
+
/** 指导民警ID */
|
|
3157
|
+
guidanceUser?: string;
|
|
3158
|
+
/** 移交原因类型 */
|
|
3159
|
+
handoverReasonType?: string[];
|
|
3160
|
+
/** 交接结果 (1-确认接收, 2-驳回) */
|
|
3161
|
+
handoverReceiveStatus?: string[];
|
|
3162
|
+
/** 交接确认人ID */
|
|
3163
|
+
handoverReceiveUser?: string;
|
|
3164
|
+
/** 驳回类型 (不应移交/材料补证) */
|
|
3165
|
+
handoverRejectType?: string[];
|
|
3166
|
+
/** 移交状态 (0-未移交, 1-待补证, 2-待接收, 3-已接收, 4-已驳回) */
|
|
3167
|
+
handoverStatus?: string[];
|
|
3168
|
+
/**
|
|
3169
|
+
* ID大于等于
|
|
3170
|
+
* @format int64
|
|
3171
|
+
*/
|
|
3172
|
+
idGte?: number;
|
|
3173
|
+
/**
|
|
3174
|
+
* ID小于
|
|
3175
|
+
* @format int64
|
|
3176
|
+
*/
|
|
3177
|
+
idLt?: number;
|
|
3178
|
+
/** 按ID批量查询 */
|
|
3179
|
+
ids?: number[];
|
|
3180
|
+
/** 是否即时吹哨 */
|
|
3181
|
+
immediateWhistle?: boolean;
|
|
3182
|
+
/** 是否包含当前用户管理部门可见的数据。默认: false */
|
|
3183
|
+
includeAdminDepartment?: boolean;
|
|
3184
|
+
/** 是否包含下级部门。默认: false */
|
|
3185
|
+
includeChildrenDepartment?: boolean;
|
|
3186
|
+
/** 是否包含上级部门。默认: false */
|
|
3187
|
+
includeParentDepartment?: boolean;
|
|
3188
|
+
/** 就医检查报告是否上传 */
|
|
3189
|
+
medicalReportUploaded?: boolean;
|
|
3190
|
+
/** 是否只返回当前用户管理部门可见的数据。默认: false */
|
|
3191
|
+
onlyAdminDepartment?: boolean;
|
|
3192
|
+
/** 是否只返回当前用户部门可见的数据。默认: false */
|
|
3193
|
+
onlyUserDepartment?: boolean;
|
|
3194
|
+
/** 排序规则 */
|
|
3195
|
+
orderBy?: string[];
|
|
3196
|
+
/**
|
|
3197
|
+
* 页码,从1开始
|
|
3198
|
+
* @format int32
|
|
3199
|
+
*/
|
|
3200
|
+
pageIndex?: number;
|
|
3201
|
+
/**
|
|
3202
|
+
* 每页数量
|
|
3203
|
+
* @format int32
|
|
3204
|
+
*/
|
|
3205
|
+
pageSize?: number;
|
|
3206
|
+
/** 是否处罚 */
|
|
3207
|
+
punishmentStatus?: boolean;
|
|
3208
|
+
/** 救助类型 (无须就医/送医) */
|
|
3209
|
+
rescueType?: string[];
|
|
3210
|
+
/** 到场民警ID */
|
|
3211
|
+
sceneUser?: string;
|
|
3212
|
+
/** 事故编号 */
|
|
3213
|
+
sgbh?: string;
|
|
3214
|
+
/** 事故编号列表 */
|
|
3215
|
+
sgbhIn?: string[];
|
|
3216
|
+
/** 移交中队民警ID */
|
|
3217
|
+
transferUser?: string;
|
|
3218
|
+
/** 吹哨登记人ID */
|
|
3219
|
+
whistleUser?: string;
|
|
3220
|
+
}
|
|
3221
|
+
export declare class BinjiangImmediatePageParams {
|
|
3222
|
+
/**
|
|
3223
|
+
* 创建时间 大于等于
|
|
3224
|
+
* @format int64
|
|
3225
|
+
*/
|
|
3226
|
+
createTimeGte?: number;
|
|
3227
|
+
/**
|
|
3228
|
+
* 创建时间 小于
|
|
3229
|
+
* @format int64
|
|
3230
|
+
*/
|
|
3231
|
+
createTimeLt?: number;
|
|
3232
|
+
/** 创建人 */
|
|
3233
|
+
createUser?: string;
|
|
3234
|
+
/** 是否删除 */
|
|
3235
|
+
deleted?: boolean;
|
|
3236
|
+
/** 部门代码 */
|
|
3237
|
+
department?: string;
|
|
3238
|
+
/** 部门代码(批量) */
|
|
3239
|
+
departmentIn?: string[];
|
|
3240
|
+
/** 部门代码是否为空 */
|
|
3241
|
+
departmentIsNull?: boolean;
|
|
3242
|
+
/** 处置方式(1-浙里快处, 2-警务通开具, 3-自行协商, 4-移交事故中队) */
|
|
3243
|
+
disposalResult?: string[];
|
|
3244
|
+
/** 处置民警ID */
|
|
3245
|
+
disposalUser?: string;
|
|
3246
|
+
/**
|
|
3247
|
+
* 最近修改时间 大于等于
|
|
3248
|
+
* @format int64
|
|
3249
|
+
*/
|
|
3250
|
+
editTimeGte?: number;
|
|
3251
|
+
/**
|
|
3252
|
+
* 最近修改时间 小于
|
|
3253
|
+
* @format int64
|
|
3254
|
+
*/
|
|
3255
|
+
editTimeLt?: number;
|
|
3256
|
+
/** 修改人 */
|
|
3257
|
+
editUser?: string;
|
|
3258
|
+
/** 是否宣教 */
|
|
3259
|
+
educationStatus?: boolean;
|
|
3260
|
+
/** 按ID批量排除 */
|
|
3261
|
+
excludeIds?: number[];
|
|
3262
|
+
/** 民警指导状态 (0-无须指导, 1-待指派, 2-已指派, 3-已完成) */
|
|
3263
|
+
guidanceStatus?: string[];
|
|
3264
|
+
/** 指导民警ID */
|
|
3265
|
+
guidanceUser?: string;
|
|
3266
|
+
/** 移交原因类型 */
|
|
3267
|
+
handoverReasonType?: string[];
|
|
3268
|
+
/** 交接结果 (1-确认接收, 2-驳回) */
|
|
3269
|
+
handoverReceiveStatus?: string[];
|
|
3270
|
+
/** 交接确认人ID */
|
|
3271
|
+
handoverReceiveUser?: string;
|
|
3272
|
+
/** 驳回类型 (不应移交/材料补证) */
|
|
3273
|
+
handoverRejectType?: string[];
|
|
3274
|
+
/** 移交状态 (0-未移交, 1-待补证, 2-待接收, 3-已接收, 4-已驳回) */
|
|
3275
|
+
handoverStatus?: string[];
|
|
3276
|
+
/**
|
|
3277
|
+
* ID大于等于
|
|
3278
|
+
* @format int64
|
|
3279
|
+
*/
|
|
3280
|
+
idGte?: number;
|
|
3281
|
+
/**
|
|
3282
|
+
* ID小于
|
|
3283
|
+
* @format int64
|
|
3284
|
+
*/
|
|
3285
|
+
idLt?: number;
|
|
3286
|
+
/** 按ID批量查询 */
|
|
3287
|
+
ids?: number[];
|
|
3288
|
+
/** 是否即时吹哨 */
|
|
3289
|
+
immediateWhistle?: boolean;
|
|
3290
|
+
/** 是否包含当前用户管理部门可见的数据。默认: false */
|
|
3291
|
+
includeAdminDepartment?: boolean;
|
|
3292
|
+
/** 是否包含下级部门。默认: false */
|
|
3293
|
+
includeChildrenDepartment?: boolean;
|
|
3294
|
+
/** 是否包含上级部门。默认: false */
|
|
3295
|
+
includeParentDepartment?: boolean;
|
|
3296
|
+
/** 就医检查报告是否上传 */
|
|
3297
|
+
medicalReportUploaded?: boolean;
|
|
3298
|
+
/** 是否只返回当前用户管理部门可见的数据。默认: false */
|
|
3299
|
+
onlyAdminDepartment?: boolean;
|
|
3300
|
+
/** 是否只返回当前用户部门可见的数据。默认: false */
|
|
3301
|
+
onlyUserDepartment?: boolean;
|
|
3302
|
+
/** 排序规则 */
|
|
3303
|
+
orderBy?: string[];
|
|
3304
|
+
/**
|
|
3305
|
+
* 页码,从1开始
|
|
3306
|
+
* @format int32
|
|
3307
|
+
*/
|
|
3308
|
+
pageIndex?: number;
|
|
3309
|
+
/**
|
|
3310
|
+
* 每页数量
|
|
3311
|
+
* @format int32
|
|
3312
|
+
*/
|
|
3313
|
+
pageSize?: number;
|
|
3314
|
+
/** 是否处罚 */
|
|
3315
|
+
punishmentStatus?: boolean;
|
|
3316
|
+
/** 救助类型 (无须就医/送医) */
|
|
3317
|
+
rescueType?: string[];
|
|
3318
|
+
/** 到场民警ID */
|
|
3319
|
+
sceneUser?: string;
|
|
3320
|
+
/** 事故编号 */
|
|
3321
|
+
sgbh?: string;
|
|
3322
|
+
/** 事故编号列表 */
|
|
3323
|
+
sgbhIn?: string[];
|
|
3324
|
+
/** 移交中队民警ID */
|
|
3325
|
+
transferUser?: string;
|
|
3326
|
+
/** 吹哨登记人ID */
|
|
3327
|
+
whistleUser?: string;
|
|
3328
|
+
}
|
|
2487
3329
|
export declare class AccidentParams {
|
|
2488
3330
|
/** 事故地址查询。支持模糊查询 */
|
|
2489
3331
|
address?: string;
|
|
@@ -2515,14 +3357,22 @@ export declare class AccidentParams {
|
|
|
2515
3357
|
* @format int64
|
|
2516
3358
|
*/
|
|
2517
3359
|
editTimeEnd?: number;
|
|
3360
|
+
/** 是否即时宣教 */
|
|
3361
|
+
educationStatus?: boolean;
|
|
2518
3362
|
/** 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false */
|
|
2519
3363
|
filterByAdminDepartment?: boolean;
|
|
3364
|
+
/** 即时指导状态列表 */
|
|
3365
|
+
guidanceStatusIn?: string[];
|
|
3366
|
+
/** 即时定则移交状态列表 */
|
|
3367
|
+
handoverStatusIn?: string[];
|
|
2520
3368
|
/** [当事人]号牌号码 */
|
|
2521
3369
|
hphm?: string;
|
|
2522
3370
|
/** [当事人]号牌种类 */
|
|
2523
3371
|
hpzl?: string;
|
|
2524
3372
|
/** 主键 */
|
|
2525
3373
|
ids?: number[];
|
|
3374
|
+
/** 是否即时吹哨 */
|
|
3375
|
+
immediateWhistle?: boolean;
|
|
2526
3376
|
/** 是否包含已删除文件 */
|
|
2527
3377
|
includeDeleted?: boolean;
|
|
2528
3378
|
/** 是否包含子部门 */
|
|
@@ -2535,6 +3385,8 @@ export declare class AccidentParams {
|
|
|
2535
3385
|
jtfsIn?: string[];
|
|
2536
3386
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
2537
3387
|
jtfsLike?: string;
|
|
3388
|
+
/** 就医检查报告是否上传 */
|
|
3389
|
+
medicalReportUploaded?: boolean;
|
|
2538
3390
|
/** 是否必须经过部门条件过滤 */
|
|
2539
3391
|
mustFilterByDepartment?: boolean;
|
|
2540
3392
|
orderBy?: string[];
|
|
@@ -2555,10 +3407,16 @@ export declare class AccidentParams {
|
|
|
2555
3407
|
processId?: string;
|
|
2556
3408
|
/** 事故业务编号 */
|
|
2557
3409
|
processUid?: string;
|
|
3410
|
+
/** 是否即时处罚 */
|
|
3411
|
+
punishmentStatus?: boolean;
|
|
3412
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
3413
|
+
rescueType?: string;
|
|
2558
3414
|
/** [当事人]是否出险 */
|
|
2559
3415
|
sfcx?: boolean;
|
|
2560
3416
|
/** 事故编号 */
|
|
2561
3417
|
sgbh?: string;
|
|
3418
|
+
/** 事故编号(In查询) */
|
|
3419
|
+
sgbhIn?: string[];
|
|
2562
3420
|
/** 事故结案渠道批量查询 */
|
|
2563
3421
|
sgjaqdIn?: string[];
|
|
2564
3422
|
/** 事故情形。支持多选 */
|
|
@@ -2595,14 +3453,6 @@ export declare class AccidentParams {
|
|
|
2595
3453
|
townCode?: string[];
|
|
2596
3454
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
2597
3455
|
townCodePrefix?: string[];
|
|
2598
|
-
/** 事故移交受理部门 */
|
|
2599
|
-
transferHandleDepartmentIn?: string[];
|
|
2600
|
-
/** 事故移交用户 */
|
|
2601
|
-
transferHandleFromUser?: string;
|
|
2602
|
-
/** 事故移交受理状态 */
|
|
2603
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
2604
|
-
/** 事故移交受理用户 */
|
|
2605
|
-
transferHandleUser?: string;
|
|
2606
3456
|
/** 事故类型(In查询) */
|
|
2607
3457
|
typeIn?: string[];
|
|
2608
3458
|
/** 天气 */
|
|
@@ -2639,14 +3489,22 @@ export declare class ForDiscardParams {
|
|
|
2639
3489
|
department?: string;
|
|
2640
3490
|
/** 部门代码(In查询) */
|
|
2641
3491
|
departmentIn?: string[];
|
|
3492
|
+
/** 是否即时宣教 */
|
|
3493
|
+
educationStatus?: boolean;
|
|
2642
3494
|
/** 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false */
|
|
2643
3495
|
filterByAdminDepartment?: boolean;
|
|
3496
|
+
/** 即时指导状态列表 */
|
|
3497
|
+
guidanceStatusIn?: string[];
|
|
3498
|
+
/** 即时定则移交状态列表 */
|
|
3499
|
+
handoverStatusIn?: string[];
|
|
2644
3500
|
/** [当事人]号牌号码 */
|
|
2645
3501
|
hphm?: string;
|
|
2646
3502
|
/** [当事人]号牌种类 */
|
|
2647
3503
|
hpzl?: string;
|
|
2648
3504
|
/** 主键 */
|
|
2649
3505
|
ids?: number[];
|
|
3506
|
+
/** 是否即时吹哨 */
|
|
3507
|
+
immediateWhistle?: boolean;
|
|
2650
3508
|
/** 是否包含已删除文件 */
|
|
2651
3509
|
includeDeleted?: boolean;
|
|
2652
3510
|
/** 是否包含子部门 */
|
|
@@ -2657,6 +3515,8 @@ export declare class ForDiscardParams {
|
|
|
2657
3515
|
jtfsIn?: string[];
|
|
2658
3516
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
2659
3517
|
jtfsLike?: string;
|
|
3518
|
+
/** 就医检查报告是否上传 */
|
|
3519
|
+
medicalReportUploaded?: boolean;
|
|
2660
3520
|
/** 是否必须经过部门条件过滤 */
|
|
2661
3521
|
mustFilterByDepartment?: boolean;
|
|
2662
3522
|
orderBy?: string[];
|
|
@@ -2677,10 +3537,16 @@ export declare class ForDiscardParams {
|
|
|
2677
3537
|
processId?: string;
|
|
2678
3538
|
/** 事故业务编号 */
|
|
2679
3539
|
processUid?: string;
|
|
3540
|
+
/** 是否即时处罚 */
|
|
3541
|
+
punishmentStatus?: boolean;
|
|
3542
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
3543
|
+
rescueType?: string;
|
|
2680
3544
|
/** [当事人]是否出险 */
|
|
2681
3545
|
sfcx?: boolean;
|
|
2682
3546
|
/** 事故编号 */
|
|
2683
3547
|
sgbh?: string;
|
|
3548
|
+
/** 事故编号(In查询) */
|
|
3549
|
+
sgbhIn?: string[];
|
|
2684
3550
|
/** 事故情形。支持多选 */
|
|
2685
3551
|
sgqxIn?: string[];
|
|
2686
3552
|
/** 事故形态。支持多选 */
|
|
@@ -2703,14 +3569,6 @@ export declare class ForDiscardParams {
|
|
|
2703
3569
|
townCode?: string[];
|
|
2704
3570
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
2705
3571
|
townCodePrefix?: string[];
|
|
2706
|
-
/** 事故移交受理部门 */
|
|
2707
|
-
transferHandleDepartmentIn?: string[];
|
|
2708
|
-
/** 事故移交用户 */
|
|
2709
|
-
transferHandleFromUser?: string;
|
|
2710
|
-
/** 事故移交受理状态 */
|
|
2711
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
2712
|
-
/** 事故移交受理用户 */
|
|
2713
|
-
transferHandleUser?: string;
|
|
2714
3572
|
/** 事故类型(In查询) */
|
|
2715
3573
|
typeIn?: string[];
|
|
2716
3574
|
/** 天气 */
|
|
@@ -2751,14 +3609,22 @@ export declare class ForInsuranceUserParams {
|
|
|
2751
3609
|
* @format int64
|
|
2752
3610
|
*/
|
|
2753
3611
|
editTimeEnd?: number;
|
|
3612
|
+
/** 是否即时宣教 */
|
|
3613
|
+
educationStatus?: boolean;
|
|
2754
3614
|
/** 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false */
|
|
2755
3615
|
filterByAdminDepartment?: boolean;
|
|
3616
|
+
/** 即时指导状态列表 */
|
|
3617
|
+
guidanceStatusIn?: string[];
|
|
3618
|
+
/** 即时定则移交状态列表 */
|
|
3619
|
+
handoverStatusIn?: string[];
|
|
2756
3620
|
/** [当事人]号牌号码 */
|
|
2757
3621
|
hphm?: string;
|
|
2758
3622
|
/** [当事人]号牌种类 */
|
|
2759
3623
|
hpzl?: string;
|
|
2760
3624
|
/** 主键 */
|
|
2761
3625
|
ids?: number[];
|
|
3626
|
+
/** 是否即时吹哨 */
|
|
3627
|
+
immediateWhistle?: boolean;
|
|
2762
3628
|
/** 是否包含已删除文件 */
|
|
2763
3629
|
includeDeleted?: boolean;
|
|
2764
3630
|
/** 是否包含子部门 */
|
|
@@ -2771,6 +3637,8 @@ export declare class ForInsuranceUserParams {
|
|
|
2771
3637
|
jtfsIn?: string[];
|
|
2772
3638
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
2773
3639
|
jtfsLike?: string;
|
|
3640
|
+
/** 就医检查报告是否上传 */
|
|
3641
|
+
medicalReportUploaded?: boolean;
|
|
2774
3642
|
/** 是否必须经过部门条件过滤 */
|
|
2775
3643
|
mustFilterByDepartment?: boolean;
|
|
2776
3644
|
orderBy?: string[];
|
|
@@ -2791,10 +3659,16 @@ export declare class ForInsuranceUserParams {
|
|
|
2791
3659
|
processId?: string;
|
|
2792
3660
|
/** 事故业务编号 */
|
|
2793
3661
|
processUid?: string;
|
|
3662
|
+
/** 是否即时处罚 */
|
|
3663
|
+
punishmentStatus?: boolean;
|
|
3664
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
3665
|
+
rescueType?: string;
|
|
2794
3666
|
/** [当事人]是否出险 */
|
|
2795
3667
|
sfcx?: boolean;
|
|
2796
3668
|
/** 事故编号 */
|
|
2797
3669
|
sgbh?: string;
|
|
3670
|
+
/** 事故编号(In查询) */
|
|
3671
|
+
sgbhIn?: string[];
|
|
2798
3672
|
/** 事故结案渠道批量查询 */
|
|
2799
3673
|
sgjaqdIn?: string[];
|
|
2800
3674
|
/** 事故情形。支持多选 */
|
|
@@ -2831,14 +3705,6 @@ export declare class ForInsuranceUserParams {
|
|
|
2831
3705
|
townCode?: string[];
|
|
2832
3706
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
2833
3707
|
townCodePrefix?: string[];
|
|
2834
|
-
/** 事故移交受理部门 */
|
|
2835
|
-
transferHandleDepartmentIn?: string[];
|
|
2836
|
-
/** 事故移交用户 */
|
|
2837
|
-
transferHandleFromUser?: string;
|
|
2838
|
-
/** 事故移交受理状态 */
|
|
2839
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
2840
|
-
/** 事故移交受理用户 */
|
|
2841
|
-
transferHandleUser?: string;
|
|
2842
3708
|
/** 事故类型(In查询) */
|
|
2843
3709
|
typeIn?: string[];
|
|
2844
3710
|
/** 天气 */
|
|
@@ -2879,14 +3745,22 @@ export declare class HeatmapParams {
|
|
|
2879
3745
|
* @format int64
|
|
2880
3746
|
*/
|
|
2881
3747
|
editTimeEnd?: number;
|
|
3748
|
+
/** 是否即时宣教 */
|
|
3749
|
+
educationStatus?: boolean;
|
|
2882
3750
|
/** 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false */
|
|
2883
3751
|
filterByAdminDepartment?: boolean;
|
|
3752
|
+
/** 即时指导状态列表 */
|
|
3753
|
+
guidanceStatusIn?: string[];
|
|
3754
|
+
/** 即时定则移交状态列表 */
|
|
3755
|
+
handoverStatusIn?: string[];
|
|
2884
3756
|
/** [当事人]号牌号码 */
|
|
2885
3757
|
hphm?: string;
|
|
2886
3758
|
/** [当事人]号牌种类 */
|
|
2887
3759
|
hpzl?: string;
|
|
2888
3760
|
/** 主键 */
|
|
2889
3761
|
ids?: number[];
|
|
3762
|
+
/** 是否即时吹哨 */
|
|
3763
|
+
immediateWhistle?: boolean;
|
|
2890
3764
|
/** 是否包含已删除文件 */
|
|
2891
3765
|
includeDeleted?: boolean;
|
|
2892
3766
|
/** 是否包含子部门 */
|
|
@@ -2899,6 +3773,8 @@ export declare class HeatmapParams {
|
|
|
2899
3773
|
jtfsIn?: string[];
|
|
2900
3774
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
2901
3775
|
jtfsLike?: string;
|
|
3776
|
+
/** 就医检查报告是否上传 */
|
|
3777
|
+
medicalReportUploaded?: boolean;
|
|
2902
3778
|
/** 是否必须经过部门条件过滤 */
|
|
2903
3779
|
mustFilterByDepartment?: boolean;
|
|
2904
3780
|
orderBy?: string[];
|
|
@@ -2919,10 +3795,16 @@ export declare class HeatmapParams {
|
|
|
2919
3795
|
processId?: string;
|
|
2920
3796
|
/** 事故业务编号 */
|
|
2921
3797
|
processUid?: string;
|
|
3798
|
+
/** 是否即时处罚 */
|
|
3799
|
+
punishmentStatus?: boolean;
|
|
3800
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
3801
|
+
rescueType?: string;
|
|
2922
3802
|
/** [当事人]是否出险 */
|
|
2923
3803
|
sfcx?: boolean;
|
|
2924
3804
|
/** 事故编号 */
|
|
2925
3805
|
sgbh?: string;
|
|
3806
|
+
/** 事故编号(In查询) */
|
|
3807
|
+
sgbhIn?: string[];
|
|
2926
3808
|
/** 事故结案渠道批量查询 */
|
|
2927
3809
|
sgjaqdIn?: string[];
|
|
2928
3810
|
/** 事故情形。支持多选 */
|
|
@@ -2959,14 +3841,6 @@ export declare class HeatmapParams {
|
|
|
2959
3841
|
townCode?: string[];
|
|
2960
3842
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
2961
3843
|
townCodePrefix?: string[];
|
|
2962
|
-
/** 事故移交受理部门 */
|
|
2963
|
-
transferHandleDepartmentIn?: string[];
|
|
2964
|
-
/** 事故移交用户 */
|
|
2965
|
-
transferHandleFromUser?: string;
|
|
2966
|
-
/** 事故移交受理状态 */
|
|
2967
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
2968
|
-
/** 事故移交受理用户 */
|
|
2969
|
-
transferHandleUser?: string;
|
|
2970
3844
|
/** 事故类型(In查询) */
|
|
2971
3845
|
typeIn?: string[];
|
|
2972
3846
|
/** 天气 */
|
|
@@ -3017,14 +3891,22 @@ export declare class SimpleParams {
|
|
|
3017
3891
|
* @format int64
|
|
3018
3892
|
*/
|
|
3019
3893
|
editTimeEnd?: number;
|
|
3894
|
+
/** 是否即时宣教 */
|
|
3895
|
+
educationStatus?: boolean;
|
|
3020
3896
|
/** 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false */
|
|
3021
3897
|
filterByAdminDepartment?: boolean;
|
|
3898
|
+
/** 即时指导状态列表 */
|
|
3899
|
+
guidanceStatusIn?: string[];
|
|
3900
|
+
/** 即时定则移交状态列表 */
|
|
3901
|
+
handoverStatusIn?: string[];
|
|
3022
3902
|
/** [当事人]号牌号码 */
|
|
3023
3903
|
hphm?: string;
|
|
3024
3904
|
/** [当事人]号牌种类 */
|
|
3025
3905
|
hpzl?: string;
|
|
3026
3906
|
/** 主键 */
|
|
3027
3907
|
ids?: number[];
|
|
3908
|
+
/** 是否即时吹哨 */
|
|
3909
|
+
immediateWhistle?: boolean;
|
|
3028
3910
|
/** 是否包含已删除文件 */
|
|
3029
3911
|
includeDeleted?: boolean;
|
|
3030
3912
|
/** 是否包含子部门 */
|
|
@@ -3037,6 +3919,8 @@ export declare class SimpleParams {
|
|
|
3037
3919
|
jtfsIn?: string[];
|
|
3038
3920
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
3039
3921
|
jtfsLike?: string;
|
|
3922
|
+
/** 就医检查报告是否上传 */
|
|
3923
|
+
medicalReportUploaded?: boolean;
|
|
3040
3924
|
/** 是否必须经过部门条件过滤 */
|
|
3041
3925
|
mustFilterByDepartment?: boolean;
|
|
3042
3926
|
orderBy?: string[];
|
|
@@ -3057,10 +3941,16 @@ export declare class SimpleParams {
|
|
|
3057
3941
|
processId?: string;
|
|
3058
3942
|
/** 事故业务编号 */
|
|
3059
3943
|
processUid?: string;
|
|
3944
|
+
/** 是否即时处罚 */
|
|
3945
|
+
punishmentStatus?: boolean;
|
|
3946
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
3947
|
+
rescueType?: string;
|
|
3060
3948
|
/** [当事人]是否出险 */
|
|
3061
3949
|
sfcx?: boolean;
|
|
3062
3950
|
/** 事故编号 */
|
|
3063
3951
|
sgbh?: string;
|
|
3952
|
+
/** 事故编号(In查询) */
|
|
3953
|
+
sgbhIn?: string[];
|
|
3064
3954
|
/** 事故结案渠道批量查询 */
|
|
3065
3955
|
sgjaqdIn?: string[];
|
|
3066
3956
|
/** 事故情形。支持多选 */
|
|
@@ -3097,14 +3987,6 @@ export declare class SimpleParams {
|
|
|
3097
3987
|
townCode?: string[];
|
|
3098
3988
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
3099
3989
|
townCodePrefix?: string[];
|
|
3100
|
-
/** 事故移交受理部门 */
|
|
3101
|
-
transferHandleDepartmentIn?: string[];
|
|
3102
|
-
/** 事故移交用户 */
|
|
3103
|
-
transferHandleFromUser?: string;
|
|
3104
|
-
/** 事故移交受理状态 */
|
|
3105
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
3106
|
-
/** 事故移交受理用户 */
|
|
3107
|
-
transferHandleUser?: string;
|
|
3108
3990
|
/** 事故类型(In查询) */
|
|
3109
3991
|
typeIn?: string[];
|
|
3110
3992
|
/** 天气 */
|
|
@@ -3135,14 +4017,22 @@ export declare class SimpleForDiscardParams {
|
|
|
3135
4017
|
department?: string;
|
|
3136
4018
|
/** 部门代码(In查询) */
|
|
3137
4019
|
departmentIn?: string[];
|
|
4020
|
+
/** 是否即时宣教 */
|
|
4021
|
+
educationStatus?: boolean;
|
|
3138
4022
|
/** 是否根据当前用户的管理部门进行过滤。当该参数为true时,includeSubDepartment参数无效。默认为false */
|
|
3139
4023
|
filterByAdminDepartment?: boolean;
|
|
4024
|
+
/** 即时指导状态列表 */
|
|
4025
|
+
guidanceStatusIn?: string[];
|
|
4026
|
+
/** 即时定则移交状态列表 */
|
|
4027
|
+
handoverStatusIn?: string[];
|
|
3140
4028
|
/** [当事人]号牌号码 */
|
|
3141
4029
|
hphm?: string;
|
|
3142
4030
|
/** [当事人]号牌种类 */
|
|
3143
4031
|
hpzl?: string;
|
|
3144
4032
|
/** 主键 */
|
|
3145
4033
|
ids?: number[];
|
|
4034
|
+
/** 是否即时吹哨 */
|
|
4035
|
+
immediateWhistle?: boolean;
|
|
3146
4036
|
/** 是否包含已删除文件 */
|
|
3147
4037
|
includeDeleted?: boolean;
|
|
3148
4038
|
/** 是否包含子部门 */
|
|
@@ -3153,6 +4043,8 @@ export declare class SimpleForDiscardParams {
|
|
|
3153
4043
|
jtfsIn?: string[];
|
|
3154
4044
|
/** 交通方式模糊匹配。模糊匹配占位符% */
|
|
3155
4045
|
jtfsLike?: string;
|
|
4046
|
+
/** 就医检查报告是否上传 */
|
|
4047
|
+
medicalReportUploaded?: boolean;
|
|
3156
4048
|
/** 是否必须经过部门条件过滤 */
|
|
3157
4049
|
mustFilterByDepartment?: boolean;
|
|
3158
4050
|
orderBy?: string[];
|
|
@@ -3173,10 +4065,16 @@ export declare class SimpleForDiscardParams {
|
|
|
3173
4065
|
processId?: string;
|
|
3174
4066
|
/** 事故业务编号 */
|
|
3175
4067
|
processUid?: string;
|
|
4068
|
+
/** 是否即时处罚 */
|
|
4069
|
+
punishmentStatus?: boolean;
|
|
4070
|
+
/** 即时救助类型 (无须就医/送医) */
|
|
4071
|
+
rescueType?: string;
|
|
3176
4072
|
/** [当事人]是否出险 */
|
|
3177
4073
|
sfcx?: boolean;
|
|
3178
4074
|
/** 事故编号 */
|
|
3179
4075
|
sgbh?: string;
|
|
4076
|
+
/** 事故编号(In查询) */
|
|
4077
|
+
sgbhIn?: string[];
|
|
3180
4078
|
/** 事故情形。支持多选 */
|
|
3181
4079
|
sgqxIn?: string[];
|
|
3182
4080
|
/** 事故形态。支持多选 */
|
|
@@ -3199,14 +4097,6 @@ export declare class SimpleForDiscardParams {
|
|
|
3199
4097
|
townCode?: string[];
|
|
3200
4098
|
/** 辖区前缀匹配。支持多个匹配 */
|
|
3201
4099
|
townCodePrefix?: string[];
|
|
3202
|
-
/** 事故移交受理部门 */
|
|
3203
|
-
transferHandleDepartmentIn?: string[];
|
|
3204
|
-
/** 事故移交用户 */
|
|
3205
|
-
transferHandleFromUser?: string;
|
|
3206
|
-
/** 事故移交受理状态 */
|
|
3207
|
-
transferHandleState?: "Active" | "Handled" | "Transfer";
|
|
3208
|
-
/** 事故移交受理用户 */
|
|
3209
|
-
transferHandleUser?: string;
|
|
3210
4100
|
/** 事故类型(In查询) */
|
|
3211
4101
|
typeIn?: string[];
|
|
3212
4102
|
/** 天气 */
|
|
@@ -3244,6 +4134,8 @@ export declare class SupplementFiledContentParams {
|
|
|
3244
4134
|
* @format int32
|
|
3245
4135
|
*/
|
|
3246
4136
|
days: number;
|
|
4137
|
+
/** processCompletedTimeNonNull */
|
|
4138
|
+
processCompletedTimeNonNull?: boolean;
|
|
3247
4139
|
}
|
|
3248
4140
|
export declare class UserInsuranceParams {
|
|
3249
4141
|
/** [当事人]车架号 */
|
|
@@ -3331,6 +4223,106 @@ export declare class ReportSampleParams {
|
|
|
3331
4223
|
/** department */
|
|
3332
4224
|
department: string;
|
|
3333
4225
|
}
|
|
4226
|
+
export declare class BinjiangSgzdHandlePageParams {
|
|
4227
|
+
/** 到案状态(多选) */
|
|
4228
|
+
appearanceStatus?: string[];
|
|
4229
|
+
/**
|
|
4230
|
+
* 结案日期结束
|
|
4231
|
+
* @format int64
|
|
4232
|
+
*/
|
|
4233
|
+
closeDateEnd?: number;
|
|
4234
|
+
/**
|
|
4235
|
+
* 结案日期开始
|
|
4236
|
+
* @format int64
|
|
4237
|
+
*/
|
|
4238
|
+
closeDateStart?: number;
|
|
4239
|
+
/** 是否结案(true=已结案,false=未结案) */
|
|
4240
|
+
closed?: boolean;
|
|
4241
|
+
/**
|
|
4242
|
+
* 创建时间 大于等于
|
|
4243
|
+
* @format int64
|
|
4244
|
+
*/
|
|
4245
|
+
createTimeGte?: number;
|
|
4246
|
+
/**
|
|
4247
|
+
* 创建时间 小于
|
|
4248
|
+
* @format int64
|
|
4249
|
+
*/
|
|
4250
|
+
createTimeLt?: number;
|
|
4251
|
+
/** 创建人 */
|
|
4252
|
+
createUser?: string;
|
|
4253
|
+
/** 是否删除 */
|
|
4254
|
+
deleted?: boolean;
|
|
4255
|
+
/** 部门代码 */
|
|
4256
|
+
department?: string;
|
|
4257
|
+
/** 部门代码(批量) */
|
|
4258
|
+
departmentIn?: string[];
|
|
4259
|
+
/** 部门代码是否为空 */
|
|
4260
|
+
departmentIsNull?: boolean;
|
|
4261
|
+
/**
|
|
4262
|
+
* 最近修改时间 大于等于
|
|
4263
|
+
* @format int64
|
|
4264
|
+
*/
|
|
4265
|
+
editTimeGte?: number;
|
|
4266
|
+
/**
|
|
4267
|
+
* 最近修改时间 小于
|
|
4268
|
+
* @format int64
|
|
4269
|
+
*/
|
|
4270
|
+
editTimeLt?: number;
|
|
4271
|
+
/** 修改人 */
|
|
4272
|
+
editUser?: string;
|
|
4273
|
+
/** 按ID批量排除 */
|
|
4274
|
+
excludeIds?: number[];
|
|
4275
|
+
/**
|
|
4276
|
+
* ID大于等于
|
|
4277
|
+
* @format int64
|
|
4278
|
+
*/
|
|
4279
|
+
idGte?: number;
|
|
4280
|
+
/**
|
|
4281
|
+
* ID小于
|
|
4282
|
+
* @format int64
|
|
4283
|
+
*/
|
|
4284
|
+
idLt?: number;
|
|
4285
|
+
/** 按ID批量查询 */
|
|
4286
|
+
ids?: number[];
|
|
4287
|
+
/** 是否包含当前用户管理部门可见的数据。默认: false */
|
|
4288
|
+
includeAdminDepartment?: boolean;
|
|
4289
|
+
/** 是否包含下级部门。默认: false */
|
|
4290
|
+
includeChildrenDepartment?: boolean;
|
|
4291
|
+
/** 是否包含上级部门。默认: false */
|
|
4292
|
+
includeParentDepartment?: boolean;
|
|
4293
|
+
/** 是否只返回当前用户管理部门可见的数据。默认: false */
|
|
4294
|
+
onlyAdminDepartment?: boolean;
|
|
4295
|
+
/** 是否只返回当前用户部门可见的数据。默认: false */
|
|
4296
|
+
onlyUserDepartment?: boolean;
|
|
4297
|
+
/** 排序规则 */
|
|
4298
|
+
orderBy?: string[];
|
|
4299
|
+
/**
|
|
4300
|
+
* 页码,从1开始
|
|
4301
|
+
* @format int32
|
|
4302
|
+
*/
|
|
4303
|
+
pageIndex?: number;
|
|
4304
|
+
/**
|
|
4305
|
+
* 每页数量
|
|
4306
|
+
* @format int32
|
|
4307
|
+
*/
|
|
4308
|
+
pageSize?: number;
|
|
4309
|
+
/**
|
|
4310
|
+
* 处理日期结束
|
|
4311
|
+
* @format int64
|
|
4312
|
+
*/
|
|
4313
|
+
processDateEnd?: number;
|
|
4314
|
+
/**
|
|
4315
|
+
* 处理日期开始
|
|
4316
|
+
* @format int64
|
|
4317
|
+
*/
|
|
4318
|
+
processDateStart?: number;
|
|
4319
|
+
/** 处理结果(多选) */
|
|
4320
|
+
processResult?: string[];
|
|
4321
|
+
/** 接收状态(多选) */
|
|
4322
|
+
receiveStatus?: string[];
|
|
4323
|
+
/** 事故编号 */
|
|
4324
|
+
sgbh?: string;
|
|
4325
|
+
}
|
|
3334
4326
|
export declare class GetBlockUserParams {
|
|
3335
4327
|
/** 是否已删除 */
|
|
3336
4328
|
deleted?: boolean;
|
|
@@ -3463,504 +4455,964 @@ declare class Api {
|
|
|
3463
4455
|
private http;
|
|
3464
4456
|
constructor(http: HttpClient);
|
|
3465
4457
|
accident: {
|
|
4458
|
+
/**
|
|
4459
|
+
* @description 所需权限:accident:handle
|
|
4460
|
+
*
|
|
4461
|
+
* @tags accident
|
|
4462
|
+
* @name BinjiangImmediate
|
|
4463
|
+
* @summary 保存滨江6个即时
|
|
4464
|
+
* @request POST:/accident-service/accident/binjiang/immediate
|
|
4465
|
+
* @response `200` `number` OK
|
|
4466
|
+
* @response `201` `void` Created
|
|
4467
|
+
* @response `401` `void` Unauthorized
|
|
4468
|
+
* @response `403` `void` Forbidden
|
|
4469
|
+
* @response `404` `void` Not Found
|
|
4470
|
+
*/
|
|
4471
|
+
binjiangImmediate: (data: AccidentBinJiangImmediateDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
4472
|
+
/**
|
|
4473
|
+
* @description 所需权限:accident:handle
|
|
4474
|
+
*
|
|
4475
|
+
* @tags accident
|
|
4476
|
+
* @name BinjiangImmediateList
|
|
4477
|
+
* @summary 列表查询滨江6个即时
|
|
4478
|
+
* @request GET:/accident-service/accident/binjiang/immediate/list
|
|
4479
|
+
* @response `200` `(AccidentBinJiangImmediateDTO)[]` OK
|
|
4480
|
+
* @response `401` `void` Unauthorized
|
|
4481
|
+
* @response `403` `void` Forbidden
|
|
4482
|
+
* @response `404` `void` Not Found
|
|
4483
|
+
*/
|
|
4484
|
+
binjiangImmediateList: (query: BinjiangImmediateListParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentBinJiangImmediateDTO[]>;
|
|
4485
|
+
/**
|
|
4486
|
+
* @description 所需权限:accident:handle
|
|
4487
|
+
*
|
|
4488
|
+
* @tags accident
|
|
4489
|
+
* @name BinjiangImmediatePage
|
|
4490
|
+
* @summary 分页查询滨江6个即时
|
|
4491
|
+
* @request GET:/accident-service/accident/binjiang/immediate/page
|
|
4492
|
+
* @response `200` `PageResultAccidentBinJiangImmediateDTO` OK
|
|
4493
|
+
* @response `401` `void` Unauthorized
|
|
4494
|
+
* @response `403` `void` Forbidden
|
|
4495
|
+
* @response `404` `void` Not Found
|
|
4496
|
+
*/
|
|
4497
|
+
binjiangImmediatePage: (query: BinjiangImmediatePageParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentBinJiangImmediateDTO>;
|
|
4498
|
+
/**
|
|
4499
|
+
* @description 所需权限:accident:handle
|
|
4500
|
+
*
|
|
4501
|
+
* @tags accident
|
|
4502
|
+
* @name BinjiangImmediateSgbhBySgbh
|
|
4503
|
+
* @summary 根据事故编号查询滨江6个即时
|
|
4504
|
+
* @request GET:/accident-service/accident/binjiang/immediate/sgbh/{sgbh}
|
|
4505
|
+
* @response `200` `AccidentBinJiangImmediateDTO` OK
|
|
4506
|
+
* @response `401` `void` Unauthorized
|
|
4507
|
+
* @response `403` `void` Forbidden
|
|
4508
|
+
* @response `404` `void` Not Found
|
|
4509
|
+
*/
|
|
4510
|
+
binjiangImmediateSgbhBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentBinJiangImmediateDTO>;
|
|
4511
|
+
/**
|
|
4512
|
+
* @description 所需权限:accident:handle
|
|
4513
|
+
*
|
|
4514
|
+
* @tags accident
|
|
4515
|
+
* @name GetBinjiangImmediateById
|
|
4516
|
+
* @summary 根据ID查询滨江6个即时
|
|
4517
|
+
* @request GET:/accident-service/accident/binjiang/immediate/{id}
|
|
4518
|
+
* @response `200` `AccidentBinJiangImmediateDTO` OK
|
|
4519
|
+
* @response `401` `void` Unauthorized
|
|
4520
|
+
* @response `403` `void` Forbidden
|
|
4521
|
+
* @response `404` `void` Not Found
|
|
4522
|
+
*/
|
|
4523
|
+
getBinjiangImmediateById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentBinJiangImmediateDTO>;
|
|
4524
|
+
/**
|
|
4525
|
+
* @description 所需权限:accident:handle
|
|
4526
|
+
*
|
|
4527
|
+
* @tags accident
|
|
4528
|
+
* @name DeleteBinjiangImmediateById
|
|
4529
|
+
* @summary 删除滨江6个即时
|
|
4530
|
+
* @request DELETE:/accident-service/accident/binjiang/immediate/{id}
|
|
4531
|
+
* @response `200` `void` OK
|
|
4532
|
+
* @response `204` `void` No Content
|
|
4533
|
+
* @response `401` `void` Unauthorized
|
|
4534
|
+
* @response `403` `void` Forbidden
|
|
4535
|
+
*/
|
|
4536
|
+
deleteBinjiangImmediateById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4537
|
+
/**
|
|
4538
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4539
|
+
*
|
|
4540
|
+
* @tags accident
|
|
4541
|
+
* @name Accident
|
|
4542
|
+
* @summary 事故信息分页查询
|
|
4543
|
+
* @request GET:/accident-service/accident
|
|
4544
|
+
* @response `200` `PageResultAccidentDTO` OK
|
|
4545
|
+
* @response `401` `void` Unauthorized
|
|
4546
|
+
* @response `403` `void` Forbidden
|
|
4547
|
+
* @response `404` `void` Not Found
|
|
4548
|
+
*/
|
|
4549
|
+
accident: (query: AccidentParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentDTO>;
|
|
4550
|
+
/**
|
|
4551
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4552
|
+
*
|
|
4553
|
+
* @tags accident
|
|
4554
|
+
* @name FindBySgbhBySgbh
|
|
4555
|
+
* @summary 按事故编号查询事故信息
|
|
4556
|
+
* @request GET:/accident-service/accident/find-by-sgbh/{sgbh}
|
|
4557
|
+
* @response `200` `AccidentDTORes` OK
|
|
4558
|
+
* @response `401` `void` Unauthorized
|
|
4559
|
+
* @response `403` `void` Forbidden
|
|
4560
|
+
* @response `404` `void` Not Found
|
|
4561
|
+
*/
|
|
4562
|
+
findBySgbhBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentDTORes>;
|
|
4563
|
+
/**
|
|
4564
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4565
|
+
*
|
|
4566
|
+
* @tags accident
|
|
4567
|
+
* @name FindBySgbhDeleteBySgbh
|
|
4568
|
+
* @summary 事故记录删除
|
|
4569
|
+
* @request POST:/accident-service/accident/find-by-sgbh/{sgbh}/delete
|
|
4570
|
+
* @response `200` `void` OK
|
|
4571
|
+
* @response `201` `void` Created
|
|
4572
|
+
* @response `401` `void` Unauthorized
|
|
4573
|
+
* @response `403` `void` Forbidden
|
|
4574
|
+
* @response `404` `void` Not Found
|
|
4575
|
+
*/
|
|
4576
|
+
findBySgbhDeleteBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4577
|
+
/**
|
|
4578
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4579
|
+
*
|
|
4580
|
+
* @tags accident
|
|
4581
|
+
* @name FindBySgbhInsuranceClaimBySgbh
|
|
4582
|
+
* @summary 按事故编号查询事故理赔信息
|
|
4583
|
+
* @request GET:/accident-service/accident/find-by-sgbh/{sgbh}/insurance-claim
|
|
4584
|
+
* @response `200` `(AccidentUserInsuranceDetail)[]` OK
|
|
4585
|
+
* @response `401` `void` Unauthorized
|
|
4586
|
+
* @response `403` `void` Forbidden
|
|
4587
|
+
* @response `404` `void` Not Found
|
|
4588
|
+
*/
|
|
4589
|
+
findBySgbhInsuranceClaimBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentUserInsuranceDetail[]>;
|
|
4590
|
+
/**
|
|
4591
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4592
|
+
*
|
|
4593
|
+
* @tags accident
|
|
4594
|
+
* @name FindBySgbhPushToTrffBySgbh
|
|
4595
|
+
* @summary 按事故编号将事故推送到六合一
|
|
4596
|
+
* @request POST:/accident-service/accident/find-by-sgbh/{sgbh}/push-to-trff
|
|
4597
|
+
* @response `200` `AccidentPushResponse` OK
|
|
4598
|
+
* @response `201` `void` Created
|
|
4599
|
+
* @response `401` `void` Unauthorized
|
|
4600
|
+
* @response `403` `void` Forbidden
|
|
4601
|
+
* @response `404` `void` Not Found
|
|
4602
|
+
*/
|
|
4603
|
+
findBySgbhPushToTrffBySgbh: ({ sgbh, ...query }: FindBySgbhPushToTrffBySgbhParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentPushResponse>;
|
|
4604
|
+
/**
|
|
4605
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4606
|
+
*
|
|
4607
|
+
* @tags accident
|
|
4608
|
+
* @name FindBySgbhPushToZlkcBySgbh
|
|
4609
|
+
* @summary 按事故编号将事故推送到浙里快处省归集库
|
|
4610
|
+
* @request POST:/accident-service/accident/find-by-sgbh/{sgbh}/push-to-zlkc
|
|
4611
|
+
* @response `200` `void` OK
|
|
4612
|
+
* @response `201` `void` Created
|
|
4613
|
+
* @response `401` `void` Unauthorized
|
|
4614
|
+
* @response `403` `void` Forbidden
|
|
4615
|
+
* @response `404` `void` Not Found
|
|
4616
|
+
*/
|
|
4617
|
+
findBySgbhPushToZlkcBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4618
|
+
/**
|
|
4619
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4620
|
+
*
|
|
4621
|
+
* @tags accident
|
|
4622
|
+
* @name FindBySgbhRecoverBySgbh
|
|
4623
|
+
* @summary 事故记录恢复
|
|
4624
|
+
* @request POST:/accident-service/accident/find-by-sgbh/{sgbh}/recover
|
|
4625
|
+
* @response `200` `void` OK
|
|
4626
|
+
* @response `201` `void` Created
|
|
4627
|
+
* @response `401` `void` Unauthorized
|
|
4628
|
+
* @response `403` `void` Forbidden
|
|
4629
|
+
* @response `404` `void` Not Found
|
|
4630
|
+
*/
|
|
4631
|
+
findBySgbhRecoverBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4632
|
+
/**
|
|
4633
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4634
|
+
*
|
|
4635
|
+
* @tags accident
|
|
4636
|
+
* @name ForDiscard
|
|
4637
|
+
* @summary 不予处理事故信息分页查询
|
|
4638
|
+
* @request GET:/accident-service/accident/for-discard
|
|
4639
|
+
* @response `200` `PageResultAccidentDTO` OK
|
|
4640
|
+
* @response `401` `void` Unauthorized
|
|
4641
|
+
* @response `403` `void` Forbidden
|
|
4642
|
+
* @response `404` `void` Not Found
|
|
4643
|
+
*/
|
|
4644
|
+
forDiscard: (query: ForDiscardParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentDTO>;
|
|
4645
|
+
/**
|
|
4646
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4647
|
+
*
|
|
4648
|
+
* @tags accident
|
|
4649
|
+
* @name ForDiscardList
|
|
4650
|
+
* @summary 不予处理事故信息分页查询
|
|
4651
|
+
* @request POST:/accident-service/accident/for-discard/list
|
|
4652
|
+
* @response `200` `PageResultAccidentDTO` OK
|
|
4653
|
+
* @response `201` `void` Created
|
|
4654
|
+
* @response `401` `void` Unauthorized
|
|
4655
|
+
* @response `403` `void` Forbidden
|
|
4656
|
+
* @response `404` `void` Not Found
|
|
4657
|
+
*/
|
|
4658
|
+
forDiscardList: (data: DiscardAccidentQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentDTO>;
|
|
4659
|
+
/**
|
|
4660
|
+
* @description 所需权限:accident:handle
|
|
4661
|
+
*
|
|
4662
|
+
* @tags accident
|
|
4663
|
+
* @name ForDiscardSave
|
|
4664
|
+
* @summary 不予处理事故信息保存
|
|
4665
|
+
* @request POST:/accident-service/accident/for-discard/save
|
|
4666
|
+
* @response `200` `void` OK
|
|
4667
|
+
* @response `201` `void` Created
|
|
4668
|
+
* @response `401` `void` Unauthorized
|
|
4669
|
+
* @response `403` `void` Forbidden
|
|
4670
|
+
* @response `404` `void` Not Found
|
|
4671
|
+
*/
|
|
4672
|
+
forDiscardSave: (data: AccidentDTOReq, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4673
|
+
/**
|
|
4674
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4675
|
+
*
|
|
4676
|
+
* @tags accident
|
|
4677
|
+
* @name ForDiscardById
|
|
4678
|
+
* @summary 不予处理事故信息查询
|
|
4679
|
+
* @request GET:/accident-service/accident/for-discard/{id}
|
|
4680
|
+
* @response `200` `AccidentDTORes` OK
|
|
4681
|
+
* @response `401` `void` Unauthorized
|
|
4682
|
+
* @response `403` `void` Forbidden
|
|
4683
|
+
* @response `404` `void` Not Found
|
|
4684
|
+
*/
|
|
4685
|
+
forDiscardById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentDTORes>;
|
|
4686
|
+
/**
|
|
4687
|
+
* @description 所需权限:accident:history:list-for-insurance
|
|
4688
|
+
*
|
|
4689
|
+
* @tags accident
|
|
4690
|
+
* @name ForInsuranceUser
|
|
4691
|
+
* @summary 保险理赔事故信息分页查询
|
|
4692
|
+
* @request GET:/accident-service/accident/for-insurance-user
|
|
4693
|
+
* @response `200` `PageResultAccidentInsuranceDTO` OK
|
|
4694
|
+
* @response `401` `void` Unauthorized
|
|
4695
|
+
* @response `403` `void` Forbidden
|
|
4696
|
+
* @response `404` `void` Not Found
|
|
4697
|
+
*/
|
|
4698
|
+
forInsuranceUser: (query: ForInsuranceUserParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentInsuranceDTO>;
|
|
4699
|
+
/**
|
|
4700
|
+
* No description
|
|
4701
|
+
*
|
|
4702
|
+
* @tags accident
|
|
4703
|
+
* @name GenerateSgms
|
|
4704
|
+
* @summary 根据事故内容生成事故描述
|
|
4705
|
+
* @request POST:/accident-service/accident/generate-sgms
|
|
4706
|
+
* @response `200` `string` OK
|
|
4707
|
+
* @response `201` `void` Created
|
|
4708
|
+
* @response `401` `void` Unauthorized
|
|
4709
|
+
* @response `403` `void` Forbidden
|
|
4710
|
+
* @response `404` `void` Not Found
|
|
4711
|
+
*/
|
|
4712
|
+
generateSgms: (data: AccidentSgmsGenerateRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<string>;
|
|
4713
|
+
/**
|
|
4714
|
+
* No description
|
|
4715
|
+
*
|
|
4716
|
+
* @tags accident
|
|
4717
|
+
* @name GenerateSgmsByNodeVueRender
|
|
4718
|
+
* @summary 根据事故内容生成事故描述(新)
|
|
4719
|
+
* @request POST:/accident-service/accident/generate-sgms-by-node-vue-render
|
|
4720
|
+
* @response `200` `string` OK
|
|
4721
|
+
* @response `201` `void` Created
|
|
4722
|
+
* @response `401` `void` Unauthorized
|
|
4723
|
+
* @response `403` `void` Forbidden
|
|
4724
|
+
* @response `404` `void` Not Found
|
|
4725
|
+
*/
|
|
4726
|
+
generateSgmsByNodeVueRender: (data: AccidentSgmsGenerateRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<string>;
|
|
3466
4727
|
/**
|
|
3467
4728
|
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
3468
4729
|
*
|
|
3469
4730
|
* @tags accident
|
|
3470
|
-
* @name
|
|
4731
|
+
* @name Heatmap
|
|
4732
|
+
* @summary 事故热力图点位查询
|
|
4733
|
+
* @request GET:/accident-service/accident/heatmap
|
|
4734
|
+
* @response `200` `PageResultAccidentSimpleForHeatMap` OK
|
|
4735
|
+
* @response `401` `void` Unauthorized
|
|
4736
|
+
* @response `403` `void` Forbidden
|
|
4737
|
+
* @response `404` `void` Not Found
|
|
4738
|
+
*/
|
|
4739
|
+
heatmap: (query: HeatmapParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentSimpleForHeatMap>;
|
|
4740
|
+
/**
|
|
4741
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4742
|
+
*
|
|
4743
|
+
* @tags accident
|
|
4744
|
+
* @name List
|
|
3471
4745
|
* @summary 事故信息分页查询
|
|
3472
|
-
* @request
|
|
4746
|
+
* @request POST:/accident-service/accident/list
|
|
3473
4747
|
* @response `200` `PageResultAccidentDTO` OK
|
|
4748
|
+
* @response `201` `void` Created
|
|
3474
4749
|
* @response `401` `void` Unauthorized
|
|
3475
4750
|
* @response `403` `void` Forbidden
|
|
3476
4751
|
* @response `404` `void` Not Found
|
|
3477
4752
|
*/
|
|
3478
|
-
|
|
4753
|
+
list: (data: AccidentQueryBean, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentDTO>;
|
|
4754
|
+
/**
|
|
4755
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4756
|
+
*
|
|
4757
|
+
* @tags accident
|
|
4758
|
+
* @name NextNumber
|
|
4759
|
+
* @summary 根据部门编号获取下一位事故编号
|
|
4760
|
+
* @request GET:/accident-service/accident/next-number
|
|
4761
|
+
* @response `200` `string` OK
|
|
4762
|
+
* @response `401` `void` Unauthorized
|
|
4763
|
+
* @response `403` `void` Forbidden
|
|
4764
|
+
* @response `404` `void` Not Found
|
|
4765
|
+
*/
|
|
4766
|
+
nextNumber: (query: NextNumberParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<string>;
|
|
4767
|
+
/**
|
|
4768
|
+
* @description 所需权限:accident:history:list
|
|
4769
|
+
*
|
|
4770
|
+
* @tags accident
|
|
4771
|
+
* @name ReportHtml
|
|
4772
|
+
* @summary 根据指定参数生成事故认定书HTML预览
|
|
4773
|
+
* @request POST:/accident-service/accident/report-html
|
|
4774
|
+
* @response `200` `string` OK
|
|
4775
|
+
* @response `201` `void` Created
|
|
4776
|
+
* @response `401` `void` Unauthorized
|
|
4777
|
+
* @response `403` `void` Forbidden
|
|
4778
|
+
* @response `404` `void` Not Found
|
|
4779
|
+
*/
|
|
4780
|
+
reportHtml: (data: RenderProcessDataRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<string>;
|
|
4781
|
+
/**
|
|
4782
|
+
* @description 所需权限:accident:handle
|
|
4783
|
+
*
|
|
4784
|
+
* @tags accident
|
|
4785
|
+
* @name Save
|
|
4786
|
+
* @summary 事故信息保存
|
|
4787
|
+
* @request POST:/accident-service/accident/save
|
|
4788
|
+
* @response `200` `void` OK
|
|
4789
|
+
* @response `201` `void` Created
|
|
4790
|
+
* @response `401` `void` Unauthorized
|
|
4791
|
+
* @response `403` `void` Forbidden
|
|
4792
|
+
* @response `404` `void` Not Found
|
|
4793
|
+
*/
|
|
4794
|
+
save: (query: SaveParams, data: AccidentDTOReq, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3479
4795
|
/**
|
|
3480
4796
|
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
3481
4797
|
*
|
|
3482
4798
|
* @tags accident
|
|
3483
|
-
* @name
|
|
3484
|
-
* @summary
|
|
3485
|
-
* @request GET:/accident-service/accident/
|
|
4799
|
+
* @name Simple
|
|
4800
|
+
* @summary 分页查询基本信息
|
|
4801
|
+
* @request GET:/accident-service/accident/simple
|
|
4802
|
+
* @response `200` `PageResultAccidentSimpleDTO` OK
|
|
4803
|
+
* @response `401` `void` Unauthorized
|
|
4804
|
+
* @response `403` `void` Forbidden
|
|
4805
|
+
* @response `404` `void` Not Found
|
|
4806
|
+
*/
|
|
4807
|
+
simple: (query: SimpleParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentSimpleDTO>;
|
|
4808
|
+
/**
|
|
4809
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4810
|
+
*
|
|
4811
|
+
* @tags accident
|
|
4812
|
+
* @name SimpleForDiscard
|
|
4813
|
+
* @summary 不予处理事故简项目信息分页查询
|
|
4814
|
+
* @request GET:/accident-service/accident/simple/for-discard
|
|
4815
|
+
* @response `200` `PageResultAccidentSimpleDTO` OK
|
|
4816
|
+
* @response `401` `void` Unauthorized
|
|
4817
|
+
* @response `403` `void` Forbidden
|
|
4818
|
+
* @response `404` `void` Not Found
|
|
4819
|
+
*/
|
|
4820
|
+
simpleForDiscard: (query: SimpleForDiscardParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentSimpleDTO>;
|
|
4821
|
+
/**
|
|
4822
|
+
* @description 所需权限:accident:history:list
|
|
4823
|
+
*
|
|
4824
|
+
* @tags accident
|
|
4825
|
+
* @name StatisticAccidentCountGroupByUser
|
|
4826
|
+
* @summary 按当事人分组获取事故记录数,按数量大小降序排序
|
|
4827
|
+
* @request GET:/accident-service/accident/statistic/accident-count-group-by-user
|
|
4828
|
+
* @response `200` `PageResultUserAccidentCount` OK
|
|
4829
|
+
* @response `401` `void` Unauthorized
|
|
4830
|
+
* @response `403` `void` Forbidden
|
|
4831
|
+
* @response `404` `void` Not Found
|
|
4832
|
+
*/
|
|
4833
|
+
statisticAccidentCountGroupByUser: (query: StatisticAccidentCountGroupByUserParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultUserAccidentCount>;
|
|
4834
|
+
/**
|
|
4835
|
+
* @description 所需权限:accident:handle
|
|
4836
|
+
*
|
|
4837
|
+
* @tags accident
|
|
4838
|
+
* @name SupplementFiledContent
|
|
4839
|
+
* @summary 补充事故相关字段
|
|
4840
|
+
* @request POST:/accident-service/accident/supplement-filed-content
|
|
4841
|
+
* @response `200` `void` OK
|
|
4842
|
+
* @response `201` `void` Created
|
|
4843
|
+
* @response `401` `void` Unauthorized
|
|
4844
|
+
* @response `403` `void` Forbidden
|
|
4845
|
+
* @response `404` `void` Not Found
|
|
4846
|
+
*/
|
|
4847
|
+
supplementFiledContent: (query: SupplementFiledContentParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4848
|
+
/**
|
|
4849
|
+
* @description 所需权限:accident:history:list-for-insurance
|
|
4850
|
+
*
|
|
4851
|
+
* @tags accident
|
|
4852
|
+
* @name UserInsurance
|
|
4853
|
+
* @summary 保险理赔事故信息分页查询
|
|
4854
|
+
* @request GET:/accident-service/accident/user-insurance
|
|
4855
|
+
* @response `200` `PageResultAccidentUserInsuranceDTO` OK
|
|
4856
|
+
* @response `401` `void` Unauthorized
|
|
4857
|
+
* @response `403` `void` Forbidden
|
|
4858
|
+
* @response `404` `void` Not Found
|
|
4859
|
+
*/
|
|
4860
|
+
userInsurance: (query: UserInsuranceParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultAccidentUserInsuranceDTO>;
|
|
4861
|
+
/**
|
|
4862
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4863
|
+
*
|
|
4864
|
+
* @tags accident
|
|
4865
|
+
* @name ById
|
|
4866
|
+
* @summary 事故信息查询
|
|
4867
|
+
* @request GET:/accident-service/accident/{id}
|
|
3486
4868
|
* @response `200` `AccidentDTORes` OK
|
|
3487
4869
|
* @response `401` `void` Unauthorized
|
|
3488
4870
|
* @response `403` `void` Forbidden
|
|
3489
4871
|
* @response `404` `void` Not Found
|
|
3490
4872
|
*/
|
|
3491
|
-
|
|
4873
|
+
byId: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentDTORes>;
|
|
3492
4874
|
/**
|
|
3493
|
-
* @description 所需权限:accident:
|
|
4875
|
+
* @description 所需权限:accident:insurance:info:manage
|
|
3494
4876
|
*
|
|
3495
4877
|
* @tags accident
|
|
3496
|
-
* @name
|
|
3497
|
-
* @summary
|
|
3498
|
-
* @request POST:/accident-service/accident/
|
|
4878
|
+
* @name InsuraneBySgbhAndZjhm
|
|
4879
|
+
* @summary 保存保险理赔信息
|
|
4880
|
+
* @request POST:/accident-service/accident/{sgbh}/insurane/{zjhm}
|
|
3499
4881
|
* @response `200` `void` OK
|
|
3500
4882
|
* @response `201` `void` Created
|
|
3501
4883
|
* @response `401` `void` Unauthorized
|
|
3502
4884
|
* @response `403` `void` Forbidden
|
|
3503
4885
|
* @response `404` `void` Not Found
|
|
3504
4886
|
*/
|
|
3505
|
-
|
|
4887
|
+
insuraneBySgbhAndZjhm: (sgbh: string, zjhm: string, data: AccidentUserInsuranceDTOReq, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3506
4888
|
/**
|
|
3507
4889
|
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
3508
4890
|
*
|
|
3509
4891
|
* @tags accident
|
|
3510
|
-
* @name
|
|
3511
|
-
* @summary
|
|
3512
|
-
* @request GET:/accident-service/accident/
|
|
3513
|
-
* @response `200` `
|
|
4892
|
+
* @name ReportDownloadBySgbh
|
|
4893
|
+
* @summary 下载事故认定书pdf文件
|
|
4894
|
+
* @request GET:/accident-service/accident/{sgbh}/report/download
|
|
4895
|
+
* @response `200` `Resource` OK
|
|
3514
4896
|
* @response `401` `void` Unauthorized
|
|
3515
4897
|
* @response `403` `void` Forbidden
|
|
3516
4898
|
* @response `404` `void` Not Found
|
|
3517
4899
|
*/
|
|
3518
|
-
|
|
4900
|
+
reportDownloadBySgbh: ({ sgbh, ...query }: ReportDownloadBySgbhParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<Resource>;
|
|
3519
4901
|
/**
|
|
3520
|
-
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4902
|
+
* @description 所需权限:accident:modify<br>所需权限:accident:handle、accident:police:handle (OR)
|
|
3521
4903
|
*
|
|
3522
4904
|
* @tags accident
|
|
3523
|
-
* @name
|
|
3524
|
-
* @summary
|
|
3525
|
-
* @request
|
|
3526
|
-
* @response `200` `
|
|
4905
|
+
* @name ReportGenerateBySgbh
|
|
4906
|
+
* @summary 重新生成事故认定书
|
|
4907
|
+
* @request GET:/accident-service/accident/{sgbh}/report/generate
|
|
4908
|
+
* @response `200` `string` OK
|
|
4909
|
+
* @response `401` `void` Unauthorized
|
|
4910
|
+
* @response `403` `void` Forbidden
|
|
4911
|
+
* @response `404` `void` Not Found
|
|
4912
|
+
*/
|
|
4913
|
+
reportGenerateBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<string>;
|
|
4914
|
+
/**
|
|
4915
|
+
* @description 所需权限:accident:history:list、accident:personal:history:list (OR)
|
|
4916
|
+
*
|
|
4917
|
+
* @tags accident
|
|
4918
|
+
* @name ReportPreviewBySgbh
|
|
4919
|
+
* @summary 预览事故认定书(html形式)
|
|
4920
|
+
* @request GET:/accident-service/accident/{sgbh}/report/preview
|
|
4921
|
+
* @response `200` `string` OK
|
|
4922
|
+
* @response `401` `void` Unauthorized
|
|
4923
|
+
* @response `403` `void` Forbidden
|
|
4924
|
+
* @response `404` `void` Not Found
|
|
4925
|
+
*/
|
|
4926
|
+
reportPreviewBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<string>;
|
|
4927
|
+
/**
|
|
4928
|
+
* @description 所需权限:accident:handle
|
|
4929
|
+
*
|
|
4930
|
+
* @tags accident
|
|
4931
|
+
* @name TransferBySgbh
|
|
4932
|
+
* @summary 事故移交
|
|
4933
|
+
* @request POST:/accident-service/accident/{sgbh}/transfer
|
|
4934
|
+
* @response `200` `void` OK
|
|
3527
4935
|
* @response `201` `void` Created
|
|
3528
4936
|
* @response `401` `void` Unauthorized
|
|
3529
4937
|
* @response `403` `void` Forbidden
|
|
3530
4938
|
* @response `404` `void` Not Found
|
|
3531
4939
|
*/
|
|
3532
|
-
|
|
4940
|
+
transferBySgbh: (sgbh: string, data: AccidentTransferReq, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3533
4941
|
/**
|
|
3534
|
-
* @description 所需权限:accident:handle
|
|
4942
|
+
* @description 所需权限:accident:handle
|
|
3535
4943
|
*
|
|
3536
4944
|
* @tags accident
|
|
3537
|
-
* @name
|
|
3538
|
-
* @summary
|
|
3539
|
-
* @request POST:/accident-service/accident/
|
|
4945
|
+
* @name TransferHandledBySgbh
|
|
4946
|
+
* @summary 事故移交受理
|
|
4947
|
+
* @request POST:/accident-service/accident/{sgbh}/transfer/handled
|
|
3540
4948
|
* @response `200` `void` OK
|
|
3541
4949
|
* @response `201` `void` Created
|
|
3542
4950
|
* @response `401` `void` Unauthorized
|
|
3543
4951
|
* @response `403` `void` Forbidden
|
|
3544
4952
|
* @response `404` `void` Not Found
|
|
3545
4953
|
*/
|
|
3546
|
-
|
|
4954
|
+
transferHandledBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3547
4955
|
/**
|
|
3548
4956
|
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
3549
4957
|
*
|
|
3550
4958
|
* @tags accident
|
|
3551
|
-
* @name
|
|
3552
|
-
* @summary
|
|
3553
|
-
* @request
|
|
4959
|
+
* @name DeleteLabelById
|
|
4960
|
+
* @summary 根据id硬删除打标信息
|
|
4961
|
+
* @request DELETE:/accident-service/accident/label/{id}
|
|
4962
|
+
* @response `200` `void` OK
|
|
4963
|
+
* @response `204` `void` No Content
|
|
4964
|
+
* @response `401` `void` Unauthorized
|
|
4965
|
+
* @response `403` `void` Forbidden
|
|
4966
|
+
*/
|
|
4967
|
+
deleteLabelById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
4968
|
+
/**
|
|
4969
|
+
* @description 所需权限:accident:history:list
|
|
4970
|
+
*
|
|
4971
|
+
* @tags accident
|
|
4972
|
+
* @name GetLabelBySgbh
|
|
4973
|
+
* @summary 根据事故编号获取打标信息
|
|
4974
|
+
* @request GET:/accident-service/accident/label/{sgbh}
|
|
4975
|
+
* @response `200` `(AccidentLabelDTO)[]` OK
|
|
4976
|
+
* @response `401` `void` Unauthorized
|
|
4977
|
+
* @response `403` `void` Forbidden
|
|
4978
|
+
* @response `404` `void` Not Found
|
|
4979
|
+
*/
|
|
4980
|
+
getLabelBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<AccidentLabelDTO[]>;
|
|
4981
|
+
/**
|
|
4982
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
4983
|
+
*
|
|
4984
|
+
* @tags accident
|
|
4985
|
+
* @name PostLabelBySgbh
|
|
4986
|
+
* @summary 根据事故编号打标
|
|
4987
|
+
* @request POST:/accident-service/accident/label/{sgbh}
|
|
3554
4988
|
* @response `200` `void` OK
|
|
3555
4989
|
* @response `201` `void` Created
|
|
3556
4990
|
* @response `401` `void` Unauthorized
|
|
3557
4991
|
* @response `403` `void` Forbidden
|
|
3558
4992
|
* @response `404` `void` Not Found
|
|
3559
4993
|
*/
|
|
3560
|
-
|
|
4994
|
+
postLabelBySgbh: (sgbh: string, data: PostLabelBySgbhPayload, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3561
4995
|
/**
|
|
3562
|
-
* @description 所需权限:accident:
|
|
4996
|
+
* @description 所需权限:accident:handle、accident:police:handle (OR)
|
|
3563
4997
|
*
|
|
3564
4998
|
* @tags accident
|
|
3565
|
-
* @name
|
|
3566
|
-
* @summary
|
|
3567
|
-
* @request
|
|
3568
|
-
* @response `200` `
|
|
4999
|
+
* @name PutLabelBySgbhAndId
|
|
5000
|
+
* @summary 修改打标信息
|
|
5001
|
+
* @request PUT:/accident-service/accident/label/{sgbh}/{id}
|
|
5002
|
+
* @response `200` `number` OK
|
|
5003
|
+
* @response `201` `void` Created
|
|
3569
5004
|
* @response `401` `void` Unauthorized
|
|
3570
5005
|
* @response `403` `void` Forbidden
|
|
3571
5006
|
* @response `404` `void` Not Found
|
|
3572
5007
|
*/
|
|
3573
|
-
|
|
5008
|
+
putLabelBySgbhAndId: (sgbh: string, id: number, data: AccidentLabelRequest, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3574
5009
|
/**
|
|
3575
|
-
*
|
|
5010
|
+
* No description
|
|
3576
5011
|
*
|
|
3577
5012
|
* @tags accident
|
|
3578
|
-
* @name
|
|
3579
|
-
* @summary
|
|
3580
|
-
* @request
|
|
3581
|
-
* @response `200` `
|
|
3582
|
-
* @response `201` `void` Created
|
|
5013
|
+
* @name Report
|
|
5014
|
+
* @summary 根据流程uid显示事故认定书页面
|
|
5015
|
+
* @request GET:/accident-service/accident/report
|
|
5016
|
+
* @response `200` `ModelAndView` OK
|
|
3583
5017
|
* @response `401` `void` Unauthorized
|
|
3584
5018
|
* @response `403` `void` Forbidden
|
|
3585
5019
|
* @response `404` `void` Not Found
|
|
3586
5020
|
*/
|
|
3587
|
-
|
|
5021
|
+
report: (query: ReportParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ModelAndView>;
|
|
3588
5022
|
/**
|
|
3589
|
-
*
|
|
5023
|
+
* No description
|
|
3590
5024
|
*
|
|
3591
5025
|
* @tags accident
|
|
3592
|
-
* @name
|
|
3593
|
-
* @summary
|
|
3594
|
-
* @request
|
|
3595
|
-
* @response `200` `
|
|
3596
|
-
* @response `201` `void` Created
|
|
5026
|
+
* @name ReportSample
|
|
5027
|
+
* @summary 事故认定书样例页面
|
|
5028
|
+
* @request GET:/accident-service/accident/report/sample
|
|
5029
|
+
* @response `200` `ModelAndView` OK
|
|
3597
5030
|
* @response `401` `void` Unauthorized
|
|
3598
5031
|
* @response `403` `void` Forbidden
|
|
3599
5032
|
* @response `404` `void` Not Found
|
|
3600
5033
|
*/
|
|
3601
|
-
|
|
5034
|
+
reportSample: (query: ReportSampleParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<ModelAndView>;
|
|
3602
5035
|
/**
|
|
3603
|
-
* @description 所需权限:accident:
|
|
5036
|
+
* @description 所需权限:accident:handle
|
|
3604
5037
|
*
|
|
3605
5038
|
* @tags accident
|
|
3606
|
-
* @name
|
|
3607
|
-
* @summary
|
|
3608
|
-
* @request
|
|
3609
|
-
* @response `200` `
|
|
5039
|
+
* @name BinjiangSgzdHandle
|
|
5040
|
+
* @summary 新增事故移交
|
|
5041
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle
|
|
5042
|
+
* @response `200` `number` OK
|
|
5043
|
+
* @response `201` `void` Created
|
|
3610
5044
|
* @response `401` `void` Unauthorized
|
|
3611
5045
|
* @response `403` `void` Forbidden
|
|
3612
5046
|
* @response `404` `void` Not Found
|
|
3613
5047
|
*/
|
|
3614
|
-
|
|
5048
|
+
binjiangSgzdHandle: (data: BinJiangSgzdAccidentHandoverDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3615
5049
|
/**
|
|
3616
|
-
* @description 所需权限:accident:
|
|
5050
|
+
* @description 所需权限:accident:handle
|
|
3617
5051
|
*
|
|
3618
5052
|
* @tags accident
|
|
3619
|
-
* @name
|
|
3620
|
-
* @summary
|
|
3621
|
-
* @request GET:/accident-service/accident/
|
|
3622
|
-
* @response `200` `
|
|
5053
|
+
* @name BinjiangSgzdHandlePage
|
|
5054
|
+
* @summary 分页查询事故移交
|
|
5055
|
+
* @request GET:/accident-service/accident/binjiang/sgzd_handle/page
|
|
5056
|
+
* @response `200` `PageResultBinJiangSgzdAccidentHandoverDTO` OK
|
|
3623
5057
|
* @response `401` `void` Unauthorized
|
|
3624
5058
|
* @response `403` `void` Forbidden
|
|
3625
5059
|
* @response `404` `void` Not Found
|
|
3626
5060
|
*/
|
|
3627
|
-
|
|
5061
|
+
binjiangSgzdHandlePage: (query: BinjiangSgzdHandlePageParams, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<PageResultBinJiangSgzdAccidentHandoverDTO>;
|
|
3628
5062
|
/**
|
|
3629
|
-
*
|
|
5063
|
+
* @description 会同时保存关联字段<br>所需权限:accident:handle
|
|
3630
5064
|
*
|
|
3631
5065
|
* @tags accident
|
|
3632
|
-
* @name
|
|
3633
|
-
* @summary
|
|
3634
|
-
* @request
|
|
3635
|
-
* @response `200` `
|
|
5066
|
+
* @name PutBinjiangSgzdHandlePersist
|
|
5067
|
+
* @summary 保存事故移交
|
|
5068
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/persist
|
|
5069
|
+
* @response `200` `BinJiangSgzdAccidentHandoverDTO` OK
|
|
3636
5070
|
* @response `201` `void` Created
|
|
3637
5071
|
* @response `401` `void` Unauthorized
|
|
3638
5072
|
* @response `403` `void` Forbidden
|
|
3639
5073
|
* @response `404` `void` Not Found
|
|
3640
5074
|
*/
|
|
3641
|
-
|
|
5075
|
+
putBinjiangSgzdHandlePersist: (data: BinJiangSgzdAccidentHandoverDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<BinJiangSgzdAccidentHandoverDTO>;
|
|
3642
5076
|
/**
|
|
3643
|
-
*
|
|
5077
|
+
* @description 所需权限:accident:handle
|
|
3644
5078
|
*
|
|
3645
5079
|
* @tags accident
|
|
3646
|
-
* @name
|
|
3647
|
-
* @summary
|
|
3648
|
-
* @request
|
|
3649
|
-
* @response `200` `
|
|
3650
|
-
* @response `201` `void` Created
|
|
5080
|
+
* @name BinjiangSgzdHandleSgbhBySgbh
|
|
5081
|
+
* @summary 根据事故编号查询事故移交
|
|
5082
|
+
* @request GET:/accident-service/accident/binjiang/sgzd_handle/sgbh/{sgbh}
|
|
5083
|
+
* @response `200` `BinJiangSgzdAccidentHandoverDTO` OK
|
|
3651
5084
|
* @response `401` `void` Unauthorized
|
|
3652
5085
|
* @response `403` `void` Forbidden
|
|
3653
5086
|
* @response `404` `void` Not Found
|
|
3654
5087
|
*/
|
|
3655
|
-
|
|
5088
|
+
binjiangSgzdHandleSgbhBySgbh: (sgbh: string, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<BinJiangSgzdAccidentHandoverDTO>;
|
|
3656
5089
|
/**
|
|
3657
|
-
* @description 所需权限:accident:
|
|
5090
|
+
* @description 所需权限:accident:handle
|
|
3658
5091
|
*
|
|
3659
5092
|
* @tags accident
|
|
3660
|
-
* @name
|
|
3661
|
-
* @summary
|
|
3662
|
-
* @request GET:/accident-service/accident/
|
|
3663
|
-
* @response `200` `
|
|
5093
|
+
* @name GetBinjiangSgzdHandleById
|
|
5094
|
+
* @summary 根据ID查询事故移交
|
|
5095
|
+
* @request GET:/accident-service/accident/binjiang/sgzd_handle/{id}
|
|
5096
|
+
* @response `200` `BinJiangSgzdAccidentHandoverDTO` OK
|
|
3664
5097
|
* @response `401` `void` Unauthorized
|
|
3665
5098
|
* @response `403` `void` Forbidden
|
|
3666
5099
|
* @response `404` `void` Not Found
|
|
3667
5100
|
*/
|
|
3668
|
-
|
|
5101
|
+
getBinjiangSgzdHandleById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<BinJiangSgzdAccidentHandoverDTO>;
|
|
3669
5102
|
/**
|
|
3670
|
-
* @description 所需权限:accident:
|
|
5103
|
+
* @description 所需权限:accident:handle
|
|
3671
5104
|
*
|
|
3672
5105
|
* @tags accident
|
|
3673
|
-
* @name
|
|
3674
|
-
* @summary
|
|
3675
|
-
* @request
|
|
3676
|
-
* @response `200` `
|
|
5106
|
+
* @name PutBinjiangSgzdHandleById
|
|
5107
|
+
* @summary 修改事故移交
|
|
5108
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/{id}
|
|
5109
|
+
* @response `200` `number` OK
|
|
3677
5110
|
* @response `201` `void` Created
|
|
3678
5111
|
* @response `401` `void` Unauthorized
|
|
3679
5112
|
* @response `403` `void` Forbidden
|
|
3680
5113
|
* @response `404` `void` Not Found
|
|
3681
5114
|
*/
|
|
3682
|
-
|
|
5115
|
+
putBinjiangSgzdHandleById: (id: number, data: BinJiangSgzdAccidentHandoverDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3683
5116
|
/**
|
|
3684
|
-
* @description 所需权限:accident:handle
|
|
5117
|
+
* @description 所需权限:accident:handle
|
|
3685
5118
|
*
|
|
3686
5119
|
* @tags accident
|
|
3687
|
-
* @name
|
|
3688
|
-
* @summary
|
|
3689
|
-
* @request
|
|
3690
|
-
* @response `200` `
|
|
5120
|
+
* @name DeleteBinjiangSgzdHandleById
|
|
5121
|
+
* @summary 删除事故移交
|
|
5122
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/{id}
|
|
5123
|
+
* @response `200` `void` OK
|
|
5124
|
+
* @response `204` `void` No Content
|
|
3691
5125
|
* @response `401` `void` Unauthorized
|
|
3692
5126
|
* @response `403` `void` Forbidden
|
|
3693
|
-
* @response `404` `void` Not Found
|
|
3694
5127
|
*/
|
|
3695
|
-
|
|
5128
|
+
deleteBinjiangSgzdHandleById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3696
5129
|
/**
|
|
3697
|
-
* @description 所需权限:accident:
|
|
5130
|
+
* @description 所需权限:accident:handle
|
|
3698
5131
|
*
|
|
3699
5132
|
* @tags accident
|
|
3700
|
-
* @name
|
|
3701
|
-
* @summary
|
|
3702
|
-
* @request POST:/accident-service/accident/
|
|
3703
|
-
* @response `200` `
|
|
5133
|
+
* @name BinjiangSgzdHandleAppointment
|
|
5134
|
+
* @summary 新增约处记录
|
|
5135
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/appointment
|
|
5136
|
+
* @response `200` `number` OK
|
|
3704
5137
|
* @response `201` `void` Created
|
|
3705
5138
|
* @response `401` `void` Unauthorized
|
|
3706
5139
|
* @response `403` `void` Forbidden
|
|
3707
5140
|
* @response `404` `void` Not Found
|
|
3708
5141
|
*/
|
|
3709
|
-
|
|
5142
|
+
binjiangSgzdHandleAppointment: (data: BinJiangSgzdAppointmentRecordDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3710
5143
|
/**
|
|
3711
5144
|
* @description 所需权限:accident:handle
|
|
3712
5145
|
*
|
|
3713
5146
|
* @tags accident
|
|
3714
|
-
* @name
|
|
3715
|
-
* @summary
|
|
3716
|
-
* @request
|
|
3717
|
-
* @response `200` `
|
|
5147
|
+
* @name PutBinjiangSgzdHandleAppointmentById
|
|
5148
|
+
* @summary 修改约处记录
|
|
5149
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/appointment/{id}
|
|
5150
|
+
* @response `200` `number` OK
|
|
3718
5151
|
* @response `201` `void` Created
|
|
3719
5152
|
* @response `401` `void` Unauthorized
|
|
3720
5153
|
* @response `403` `void` Forbidden
|
|
3721
5154
|
* @response `404` `void` Not Found
|
|
3722
5155
|
*/
|
|
3723
|
-
|
|
5156
|
+
putBinjiangSgzdHandleAppointmentById: (id: number, data: BinJiangSgzdAppointmentRecordDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3724
5157
|
/**
|
|
3725
|
-
* @description 所需权限:accident:
|
|
5158
|
+
* @description 所需权限:accident:handle
|
|
3726
5159
|
*
|
|
3727
5160
|
* @tags accident
|
|
3728
|
-
* @name
|
|
3729
|
-
* @summary
|
|
3730
|
-
* @request
|
|
3731
|
-
* @response `200` `
|
|
5161
|
+
* @name DeleteBinjiangSgzdHandleAppointmentById
|
|
5162
|
+
* @summary 删除约处记录
|
|
5163
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/appointment/{id}
|
|
5164
|
+
* @response `200` `void` OK
|
|
5165
|
+
* @response `204` `void` No Content
|
|
3732
5166
|
* @response `401` `void` Unauthorized
|
|
3733
5167
|
* @response `403` `void` Forbidden
|
|
3734
|
-
* @response `404` `void` Not Found
|
|
3735
5168
|
*/
|
|
3736
|
-
|
|
5169
|
+
deleteBinjiangSgzdHandleAppointmentById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3737
5170
|
/**
|
|
3738
|
-
* @description 所需权限:accident:
|
|
5171
|
+
* @description 所需权限:accident:handle
|
|
3739
5172
|
*
|
|
3740
5173
|
* @tags accident
|
|
3741
|
-
* @name
|
|
3742
|
-
* @summary
|
|
3743
|
-
* @request
|
|
3744
|
-
* @response `200` `
|
|
5174
|
+
* @name BinjiangSgzdHandleDeterminationSend
|
|
5175
|
+
* @summary 新增认定书送达记录
|
|
5176
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/determination_send
|
|
5177
|
+
* @response `200` `number` OK
|
|
5178
|
+
* @response `201` `void` Created
|
|
3745
5179
|
* @response `401` `void` Unauthorized
|
|
3746
5180
|
* @response `403` `void` Forbidden
|
|
3747
5181
|
* @response `404` `void` Not Found
|
|
3748
5182
|
*/
|
|
3749
|
-
|
|
5183
|
+
binjiangSgzdHandleDeterminationSend: (data: BinJiangSgzdDeterminationSendDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3750
5184
|
/**
|
|
3751
|
-
* @description 所需权限:accident:
|
|
5185
|
+
* @description 所需权限:accident:handle
|
|
3752
5186
|
*
|
|
3753
5187
|
* @tags accident
|
|
3754
|
-
* @name
|
|
3755
|
-
* @summary
|
|
3756
|
-
* @request
|
|
3757
|
-
* @response `200` `
|
|
5188
|
+
* @name PutBinjiangSgzdHandleDeterminationSendById
|
|
5189
|
+
* @summary 修改认定书送达记录
|
|
5190
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/determination_send/{id}
|
|
5191
|
+
* @response `200` `number` OK
|
|
5192
|
+
* @response `201` `void` Created
|
|
3758
5193
|
* @response `401` `void` Unauthorized
|
|
3759
5194
|
* @response `403` `void` Forbidden
|
|
3760
5195
|
* @response `404` `void` Not Found
|
|
3761
5196
|
*/
|
|
3762
|
-
|
|
5197
|
+
putBinjiangSgzdHandleDeterminationSendById: (id: number, data: BinJiangSgzdDeterminationSendDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3763
5198
|
/**
|
|
3764
5199
|
* @description 所需权限:accident:handle
|
|
3765
5200
|
*
|
|
3766
5201
|
* @tags accident
|
|
3767
|
-
* @name
|
|
3768
|
-
* @summary
|
|
3769
|
-
* @request
|
|
5202
|
+
* @name DeleteBinjiangSgzdHandleDeterminationSendById
|
|
5203
|
+
* @summary 删除认定书送达记录
|
|
5204
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/determination_send/{id}
|
|
3770
5205
|
* @response `200` `void` OK
|
|
3771
|
-
* @response `
|
|
5206
|
+
* @response `204` `void` No Content
|
|
3772
5207
|
* @response `401` `void` Unauthorized
|
|
3773
5208
|
* @response `403` `void` Forbidden
|
|
3774
|
-
* @response `404` `void` Not Found
|
|
3775
5209
|
*/
|
|
3776
|
-
|
|
5210
|
+
deleteBinjiangSgzdHandleDeterminationSendById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3777
5211
|
/**
|
|
3778
|
-
* @description 所需权限:accident:
|
|
5212
|
+
* @description 所需权限:accident:handle
|
|
3779
5213
|
*
|
|
3780
5214
|
* @tags accident
|
|
3781
|
-
* @name
|
|
3782
|
-
* @summary
|
|
3783
|
-
* @request
|
|
3784
|
-
* @response `200` `
|
|
5215
|
+
* @name BinjiangSgzdHandleGeneralProcedure
|
|
5216
|
+
* @summary 新增一般程序流程
|
|
5217
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/general_procedure
|
|
5218
|
+
* @response `200` `number` OK
|
|
5219
|
+
* @response `201` `void` Created
|
|
3785
5220
|
* @response `401` `void` Unauthorized
|
|
3786
5221
|
* @response `403` `void` Forbidden
|
|
3787
5222
|
* @response `404` `void` Not Found
|
|
3788
5223
|
*/
|
|
3789
|
-
|
|
5224
|
+
binjiangSgzdHandleGeneralProcedure: (data: BinJiangSgzdGeneralProcedureDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3790
5225
|
/**
|
|
3791
|
-
* @description 所需权限:accident:
|
|
5226
|
+
* @description 所需权限:accident:handle
|
|
3792
5227
|
*
|
|
3793
5228
|
* @tags accident
|
|
3794
|
-
* @name
|
|
3795
|
-
* @summary
|
|
3796
|
-
* @request
|
|
3797
|
-
* @response `200` `
|
|
5229
|
+
* @name PutBinjiangSgzdHandleGeneralProcedureById
|
|
5230
|
+
* @summary 修改一般程序流程
|
|
5231
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/general_procedure/{id}
|
|
5232
|
+
* @response `200` `number` OK
|
|
5233
|
+
* @response `201` `void` Created
|
|
3798
5234
|
* @response `401` `void` Unauthorized
|
|
3799
5235
|
* @response `403` `void` Forbidden
|
|
3800
5236
|
* @response `404` `void` Not Found
|
|
3801
5237
|
*/
|
|
3802
|
-
|
|
5238
|
+
putBinjiangSgzdHandleGeneralProcedureById: (id: number, data: BinJiangSgzdGeneralProcedureDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3803
5239
|
/**
|
|
3804
|
-
* @description 所需权限:accident:
|
|
5240
|
+
* @description 所需权限:accident:handle
|
|
3805
5241
|
*
|
|
3806
5242
|
* @tags accident
|
|
3807
|
-
* @name
|
|
3808
|
-
* @summary
|
|
3809
|
-
* @request
|
|
5243
|
+
* @name DeleteBinjiangSgzdHandleGeneralProcedureById
|
|
5244
|
+
* @summary 删除一般程序流程
|
|
5245
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/general_procedure/{id}
|
|
3810
5246
|
* @response `200` `void` OK
|
|
3811
|
-
* @response `
|
|
5247
|
+
* @response `204` `void` No Content
|
|
3812
5248
|
* @response `401` `void` Unauthorized
|
|
3813
5249
|
* @response `403` `void` Forbidden
|
|
3814
|
-
* @response `404` `void` Not Found
|
|
3815
5250
|
*/
|
|
3816
|
-
|
|
5251
|
+
deleteBinjiangSgzdHandleGeneralProcedureById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3817
5252
|
/**
|
|
3818
|
-
* @description 所需权限:accident:
|
|
5253
|
+
* @description 所需权限:accident:handle
|
|
3819
5254
|
*
|
|
3820
5255
|
* @tags accident
|
|
3821
|
-
* @name
|
|
3822
|
-
* @summary
|
|
3823
|
-
* @request
|
|
3824
|
-
* @response `200` `
|
|
5256
|
+
* @name BinjiangSgzdHandlePartyAppearance
|
|
5257
|
+
* @summary 新增当事人到案信息
|
|
5258
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/party_appearance
|
|
5259
|
+
* @response `200` `number` OK
|
|
5260
|
+
* @response `201` `void` Created
|
|
3825
5261
|
* @response `401` `void` Unauthorized
|
|
3826
5262
|
* @response `403` `void` Forbidden
|
|
3827
5263
|
* @response `404` `void` Not Found
|
|
3828
5264
|
*/
|
|
3829
|
-
|
|
5265
|
+
binjiangSgzdHandlePartyAppearance: (data: BinJiangSgzdPartyAppearanceDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3830
5266
|
/**
|
|
3831
|
-
* @description 所需权限:accident:
|
|
5267
|
+
* @description 所需权限:accident:handle
|
|
3832
5268
|
*
|
|
3833
5269
|
* @tags accident
|
|
3834
|
-
* @name
|
|
3835
|
-
* @summary
|
|
3836
|
-
* @request
|
|
3837
|
-
* @response `200` `
|
|
5270
|
+
* @name PutBinjiangSgzdHandlePartyAppearanceById
|
|
5271
|
+
* @summary 修改当事人到案信息
|
|
5272
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/party_appearance/{id}
|
|
5273
|
+
* @response `200` `number` OK
|
|
5274
|
+
* @response `201` `void` Created
|
|
3838
5275
|
* @response `401` `void` Unauthorized
|
|
3839
5276
|
* @response `403` `void` Forbidden
|
|
3840
5277
|
* @response `404` `void` Not Found
|
|
3841
5278
|
*/
|
|
3842
|
-
|
|
5279
|
+
putBinjiangSgzdHandlePartyAppearanceById: (id: number, data: BinJiangSgzdPartyAppearanceDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3843
5280
|
/**
|
|
3844
|
-
* @description 所需权限:accident:
|
|
5281
|
+
* @description 所需权限:accident:handle
|
|
3845
5282
|
*
|
|
3846
5283
|
* @tags accident
|
|
3847
|
-
* @name
|
|
3848
|
-
* @summary
|
|
3849
|
-
* @request
|
|
3850
|
-
* @response `200` `
|
|
5284
|
+
* @name DeleteBinjiangSgzdHandlePartyAppearanceById
|
|
5285
|
+
* @summary 删除当事人到案信息
|
|
5286
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/party_appearance/{id}
|
|
5287
|
+
* @response `200` `void` OK
|
|
5288
|
+
* @response `204` `void` No Content
|
|
3851
5289
|
* @response `401` `void` Unauthorized
|
|
3852
5290
|
* @response `403` `void` Forbidden
|
|
3853
|
-
* @response `404` `void` Not Found
|
|
3854
5291
|
*/
|
|
3855
|
-
|
|
5292
|
+
deleteBinjiangSgzdHandlePartyAppearanceById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3856
5293
|
/**
|
|
3857
5294
|
* @description 所需权限:accident:handle
|
|
3858
5295
|
*
|
|
3859
5296
|
* @tags accident
|
|
3860
|
-
* @name
|
|
3861
|
-
* @summary
|
|
3862
|
-
* @request POST:/accident-service/accident/
|
|
3863
|
-
* @response `200` `
|
|
5297
|
+
* @name BinjiangSgzdHandlePartyConfirmation
|
|
5298
|
+
* @summary 新增当事人确认信息
|
|
5299
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/party_confirmation
|
|
5300
|
+
* @response `200` `number` OK
|
|
3864
5301
|
* @response `201` `void` Created
|
|
3865
5302
|
* @response `401` `void` Unauthorized
|
|
3866
5303
|
* @response `403` `void` Forbidden
|
|
3867
5304
|
* @response `404` `void` Not Found
|
|
3868
5305
|
*/
|
|
3869
|
-
|
|
5306
|
+
binjiangSgzdHandlePartyConfirmation: (data: BinJiangSgzdPartyConfirmationDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3870
5307
|
/**
|
|
3871
5308
|
* @description 所需权限:accident:handle
|
|
3872
5309
|
*
|
|
3873
5310
|
* @tags accident
|
|
3874
|
-
* @name
|
|
3875
|
-
* @summary
|
|
3876
|
-
* @request
|
|
3877
|
-
* @response `200` `
|
|
5311
|
+
* @name PutBinjiangSgzdHandlePartyConfirmationById
|
|
5312
|
+
* @summary 修改当事人确认信息
|
|
5313
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/party_confirmation/{id}
|
|
5314
|
+
* @response `200` `number` OK
|
|
3878
5315
|
* @response `201` `void` Created
|
|
3879
5316
|
* @response `401` `void` Unauthorized
|
|
3880
5317
|
* @response `403` `void` Forbidden
|
|
3881
5318
|
* @response `404` `void` Not Found
|
|
3882
5319
|
*/
|
|
3883
|
-
|
|
5320
|
+
putBinjiangSgzdHandlePartyConfirmationById: (id: number, data: BinJiangSgzdPartyConfirmationDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3884
5321
|
/**
|
|
3885
|
-
* @description 所需权限:accident:handle
|
|
5322
|
+
* @description 所需权限:accident:handle
|
|
3886
5323
|
*
|
|
3887
5324
|
* @tags accident
|
|
3888
|
-
* @name
|
|
3889
|
-
* @summary
|
|
3890
|
-
* @request DELETE:/accident-service/accident/
|
|
5325
|
+
* @name DeleteBinjiangSgzdHandlePartyConfirmationById
|
|
5326
|
+
* @summary 删除当事人确认信息
|
|
5327
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/party_confirmation/{id}
|
|
3891
5328
|
* @response `200` `void` OK
|
|
3892
5329
|
* @response `204` `void` No Content
|
|
3893
5330
|
* @response `401` `void` Unauthorized
|
|
3894
5331
|
* @response `403` `void` Forbidden
|
|
3895
5332
|
*/
|
|
3896
|
-
|
|
5333
|
+
deleteBinjiangSgzdHandlePartyConfirmationById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3897
5334
|
/**
|
|
3898
|
-
* @description 所需权限:accident:
|
|
5335
|
+
* @description 所需权限:accident:handle
|
|
3899
5336
|
*
|
|
3900
5337
|
* @tags accident
|
|
3901
|
-
* @name
|
|
3902
|
-
* @summary
|
|
3903
|
-
* @request
|
|
3904
|
-
* @response `200` `
|
|
5338
|
+
* @name BinjiangSgzdHandleReappraisalApplication
|
|
5339
|
+
* @summary 新增申请重新鉴定
|
|
5340
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/reappraisal_application
|
|
5341
|
+
* @response `200` `number` OK
|
|
5342
|
+
* @response `201` `void` Created
|
|
3905
5343
|
* @response `401` `void` Unauthorized
|
|
3906
5344
|
* @response `403` `void` Forbidden
|
|
3907
5345
|
* @response `404` `void` Not Found
|
|
3908
5346
|
*/
|
|
3909
|
-
|
|
5347
|
+
binjiangSgzdHandleReappraisalApplication: (data: BinJiangSgzdReappraisalApplicationDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3910
5348
|
/**
|
|
3911
|
-
* @description 所需权限:accident:handle
|
|
5349
|
+
* @description 所需权限:accident:handle
|
|
3912
5350
|
*
|
|
3913
5351
|
* @tags accident
|
|
3914
|
-
* @name
|
|
3915
|
-
* @summary
|
|
3916
|
-
* @request
|
|
3917
|
-
* @response `200` `
|
|
5352
|
+
* @name PutBinjiangSgzdHandleReappraisalApplicationById
|
|
5353
|
+
* @summary 修改申请重新鉴定
|
|
5354
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/reappraisal_application/{id}
|
|
5355
|
+
* @response `200` `number` OK
|
|
3918
5356
|
* @response `201` `void` Created
|
|
3919
5357
|
* @response `401` `void` Unauthorized
|
|
3920
5358
|
* @response `403` `void` Forbidden
|
|
3921
5359
|
* @response `404` `void` Not Found
|
|
3922
5360
|
*/
|
|
3923
|
-
|
|
5361
|
+
putBinjiangSgzdHandleReappraisalApplicationById: (id: number, data: BinJiangSgzdReappraisalApplicationDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3924
5362
|
/**
|
|
3925
|
-
* @description 所需权限:accident:handle
|
|
5363
|
+
* @description 所需权限:accident:handle
|
|
3926
5364
|
*
|
|
3927
5365
|
* @tags accident
|
|
3928
|
-
* @name
|
|
3929
|
-
* @summary
|
|
3930
|
-
* @request
|
|
5366
|
+
* @name DeleteBinjiangSgzdHandleReappraisalApplicationById
|
|
5367
|
+
* @summary 删除申请重新鉴定
|
|
5368
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/reappraisal_application/{id}
|
|
5369
|
+
* @response `200` `void` OK
|
|
5370
|
+
* @response `204` `void` No Content
|
|
5371
|
+
* @response `401` `void` Unauthorized
|
|
5372
|
+
* @response `403` `void` Forbidden
|
|
5373
|
+
*/
|
|
5374
|
+
deleteBinjiangSgzdHandleReappraisalApplicationById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
5375
|
+
/**
|
|
5376
|
+
* @description 所需权限:accident:handle
|
|
5377
|
+
*
|
|
5378
|
+
* @tags accident
|
|
5379
|
+
* @name BinjiangSgzdHandleTracking
|
|
5380
|
+
* @summary 新增追踪记录
|
|
5381
|
+
* @request POST:/accident-service/accident/binjiang/sgzd_handle/tracking
|
|
3931
5382
|
* @response `200` `number` OK
|
|
3932
5383
|
* @response `201` `void` Created
|
|
3933
5384
|
* @response `401` `void` Unauthorized
|
|
3934
5385
|
* @response `403` `void` Forbidden
|
|
3935
5386
|
* @response `404` `void` Not Found
|
|
3936
5387
|
*/
|
|
3937
|
-
|
|
5388
|
+
binjiangSgzdHandleTracking: (data: BinJiangSgzdTrackingRecordDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3938
5389
|
/**
|
|
3939
|
-
*
|
|
5390
|
+
* @description 所需权限:accident:handle
|
|
3940
5391
|
*
|
|
3941
5392
|
* @tags accident
|
|
3942
|
-
* @name
|
|
3943
|
-
* @summary
|
|
3944
|
-
* @request
|
|
3945
|
-
* @response `200` `
|
|
5393
|
+
* @name PutBinjiangSgzdHandleTrackingById
|
|
5394
|
+
* @summary 修改追踪记录
|
|
5395
|
+
* @request PUT:/accident-service/accident/binjiang/sgzd_handle/tracking/{id}
|
|
5396
|
+
* @response `200` `number` OK
|
|
5397
|
+
* @response `201` `void` Created
|
|
3946
5398
|
* @response `401` `void` Unauthorized
|
|
3947
5399
|
* @response `403` `void` Forbidden
|
|
3948
5400
|
* @response `404` `void` Not Found
|
|
3949
5401
|
*/
|
|
3950
|
-
|
|
5402
|
+
putBinjiangSgzdHandleTrackingById: (id: number, data: BinJiangSgzdTrackingRecordDTO, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<number>;
|
|
3951
5403
|
/**
|
|
3952
|
-
*
|
|
5404
|
+
* @description 所需权限:accident:handle
|
|
3953
5405
|
*
|
|
3954
5406
|
* @tags accident
|
|
3955
|
-
* @name
|
|
3956
|
-
* @summary
|
|
3957
|
-
* @request
|
|
3958
|
-
* @response `200` `
|
|
5407
|
+
* @name DeleteBinjiangSgzdHandleTrackingById
|
|
5408
|
+
* @summary 删除追踪记录
|
|
5409
|
+
* @request DELETE:/accident-service/accident/binjiang/sgzd_handle/tracking/{id}
|
|
5410
|
+
* @response `200` `void` OK
|
|
5411
|
+
* @response `204` `void` No Content
|
|
3959
5412
|
* @response `401` `void` Unauthorized
|
|
3960
5413
|
* @response `403` `void` Forbidden
|
|
3961
|
-
* @response `404` `void` Not Found
|
|
3962
5414
|
*/
|
|
3963
|
-
|
|
5415
|
+
deleteBinjiangSgzdHandleTrackingById: (id: number, axiosConfig?: AxiosRequestConfig & Record<string, any>) => Promise<void>;
|
|
3964
5416
|
};
|
|
3965
5417
|
blockUser: {
|
|
3966
5418
|
/**
|