szpt-driver-api 1.0.21 → 1.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/szTraffic.d.ts CHANGED
@@ -1,3 +1,22 @@
1
+ export declare class BaseInterviewRequest {
2
+ /** 额外数据 */
3
+ additionData?: any;
4
+ /** 派单部门 */
5
+ dispatchDepartment?: string;
6
+ /**
7
+ * 派单时间
8
+ * @format int64
9
+ */
10
+ dispatchTime?: number;
11
+ /** 派单用户 */
12
+ dispatchUser?: string;
13
+ /** 反馈部门 */
14
+ feedbackDepartment?: string;
15
+ /** 反馈用户 */
16
+ feedbackUser?: string;
17
+ /** 走访类型 */
18
+ processType?: "mock";
19
+ }
1
20
  export declare class BatchDutyPolicePlantBean {
2
21
  /** 责任民警账号 */
3
22
  dutyPolice: string;
@@ -243,7 +262,151 @@ export declare class DispatchTaskQueryBean {
243
262
  /** 序号 */
244
263
  xh?: string;
245
264
  }
265
+ export declare class DivisionDTOReq {
266
+ /** 高德代码 */
267
+ amapCode?: string;
268
+ /** 高德名称 */
269
+ amapName?: string;
270
+ /** 行政区划代码 */
271
+ code: string;
272
+ /**
273
+ * 创建时间
274
+ * @format int64
275
+ */
276
+ createTime?: number;
277
+ /** 创建人用户名 */
278
+ createUser?: string;
279
+ /**
280
+ * 是否已删除
281
+ * @example false
282
+ */
283
+ deleted?: boolean;
284
+ /**
285
+ * 是否禁用
286
+ * @example false
287
+ */
288
+ disabled?: boolean;
289
+ /**
290
+ * 对应勤务区域
291
+ * @format int64
292
+ */
293
+ dutyArea?: number;
294
+ /**
295
+ * 修改时间
296
+ * @format int64
297
+ */
298
+ editTime?: number;
299
+ /** 修改人用户名 */
300
+ editUser?: string;
301
+ /** 旧行政区划代码 */
302
+ formerCode?: string;
303
+ /**
304
+ * 主键
305
+ * @format int64
306
+ */
307
+ id?: number;
308
+ /** 行政区划名称 */
309
+ name: string;
310
+ /** 上级代码 */
311
+ parentCode?: string;
312
+ /** 行政区划代码 */
313
+ type: "city" | "committee" | "country" | "province" | "township";
314
+ }
315
+ export declare class DivisionDTORes {
316
+ /** 高德代码 */
317
+ amapCode: string;
318
+ /** 高德名称 */
319
+ amapName: string;
320
+ /** 行政区划代码 */
321
+ code: string;
322
+ /**
323
+ * 创建时间
324
+ * @format int64
325
+ */
326
+ createTime: number;
327
+ /** 创建人用户名 */
328
+ createUser: string;
329
+ /**
330
+ * 是否已删除
331
+ * @example false
332
+ */
333
+ deleted: boolean;
334
+ /**
335
+ * 是否禁用
336
+ * @example false
337
+ */
338
+ disabled: boolean;
339
+ /**
340
+ * 对应勤务区域
341
+ * @format int64
342
+ */
343
+ dutyArea: number;
344
+ /**
345
+ * 修改时间
346
+ * @format int64
347
+ */
348
+ editTime: number;
349
+ /** 修改人用户名 */
350
+ editUser: string;
351
+ /** 旧行政区划代码 */
352
+ formerCode: string;
353
+ /**
354
+ * 主键
355
+ * @format int64
356
+ */
357
+ id: number;
358
+ /** 行政区划名称 */
359
+ name: string;
360
+ /** 上级代码 */
361
+ parentCode: string;
362
+ /** 行政区划代码 */
363
+ type: "city" | "committee" | "country" | "province" | "township";
364
+ }
365
+ export declare class DivisionQueryBean {
366
+ /** 高德代码 */
367
+ amapCode?: string;
368
+ /** 区划代码 */
369
+ code?: string;
370
+ /** 区划代码(左模糊匹配) */
371
+ codeStartWith?: string;
372
+ deleted?: boolean;
373
+ /**
374
+ * 是否禁用
375
+ * @example false
376
+ */
377
+ disabled?: boolean;
378
+ /**
379
+ * 对应勤务区域
380
+ * @format int64
381
+ */
382
+ dutyArea?: number;
383
+ /**
384
+ * 主键
385
+ * @format int64
386
+ */
387
+ id?: number;
388
+ /** 主键包含 */
389
+ idIn?: number[];
390
+ ids?: number[];
391
+ /** 区划名称(模糊) */
392
+ name?: string;
393
+ orderBy?: string[];
394
+ /** @format int32 */
395
+ pageIndex?: number;
396
+ /** @format int32 */
397
+ pageSize?: number;
398
+ /** 上级代码 */
399
+ parentCode?: string;
400
+ /** 类型 */
401
+ typeIn?: ("city" | "committee" | "country" | "province" | "township")[];
402
+ }
403
+ export declare class DivisionTree {
404
+ children: DivisionTree[];
405
+ node: DivisionDTORes;
406
+ }
246
407
  export declare class Evidence {
408
+ /** 证据类型 */
409
+ category: string;
247
410
  /** 内容 */
248
411
  content: string;
249
412
  /** 描述 */
@@ -262,7 +425,7 @@ export declare class Evidence {
262
425
  * @format int64
263
426
  */
264
427
  time: number;
265
- /** 类型 */
428
+ /** 证据文件类型 */
266
429
  type: string;
267
430
  /** 上传人 */
268
431
  user: string;
@@ -451,6 +614,11 @@ export declare class GaCommunityInterviewDTO {
451
614
  * @example false
452
615
  */
453
616
  deleted: boolean;
617
+ /**
618
+ * 派单时间
619
+ * @format int64
620
+ */
621
+ dispatchTime: number;
454
622
  /**
455
623
  * 走访期限
456
624
  * @format int64
@@ -543,6 +711,16 @@ export declare class GaCommunityInterviewQueryBean {
543
711
  */
544
712
  createTimeEnd?: number;
545
713
  deleted?: boolean;
714
+ /**
715
+ * 派单时间
716
+ * @format int64
717
+ */
718
+ dispatchTimeBegin?: number;
719
+ /**
720
+ * 派单时间
721
+ * @format int64
722
+ */
723
+ dispatchTimeEnd?: number;
546
724
  /**
547
725
  * 期限时间
548
726
  * @format int64
@@ -553,6 +731,8 @@ export declare class GaCommunityInterviewQueryBean {
553
731
  * @format int64
554
732
  */
555
733
  dueTimeEnd?: number;
734
+ /** 社区责任部门 */
735
+ dutyDepartment?: string;
556
736
  /**
557
737
  * 是否已完成
558
738
  * @example false
@@ -564,6 +744,11 @@ export declare class GaCommunityInterviewQueryBean {
564
744
  * @example false
565
745
  */
566
746
  includeSubCreateDepartment?: boolean;
747
+ /**
748
+ * 是否包含下级责任部门
749
+ * @example false
750
+ */
751
+ includeSubDutyDepartment?: boolean;
567
752
  /**
568
753
  * 是否包含下级走访部门
569
754
  * @example false
@@ -775,108 +960,75 @@ export declare class HeatmapPoint {
775
960
  xh: string;
776
961
  }
777
962
  export declare class InterviewUserSimple {
963
+ /** 部门代码 */
778
964
  departmentCode: string;
965
+ /** 部门级别 */
966
+ departmentLevel: "DaDui" | "ZhiDui" | "ZhongDui" | "ZongDui";
967
+ /** 部门名称 */
779
968
  departmentName: string;
969
+ /** 部门行政区划 */
970
+ departmentXzqh: string;
780
971
  /** @format int64 */
781
972
  handlingCount: number;
782
- /** @format int64 */
973
+ /**
974
+ * 用户ID
975
+ * @format int64
976
+ */
783
977
  id: number;
978
+ /** 身份证号 */
784
979
  idCardNumber: string;
980
+ /** 手机号 */
785
981
  phone: string;
982
+ /** 警员编制 */
983
+ policeBzlx: string;
984
+ /** 警员编号 */
786
985
  policeCode: string;
986
+ /** 警员类型 */
787
987
  policeType: string;
988
+ /** 姓名 */
788
989
  realName: string;
789
- /** @format int64 */
990
+ /** 角色显示名称 */
991
+ roleDisplayName: string;
992
+ /**
993
+ * 角色ID
994
+ * @format int64
995
+ */
790
996
  roleId: number;
997
+ /** 角色名称 */
791
998
  roleName: string;
999
+ /** 用户名 */
792
1000
  username: string;
793
1001
  }
794
- export declare class PageResultDispatchTaskDTO {
795
- list: DispatchTaskDTO[];
796
- /** @format int64 */
797
- total: number;
798
- }
799
- export declare class PageResultGaCommunityDTO {
800
- list: GaCommunityDTORes[];
801
- /** @format int64 */
802
- total: number;
803
- }
804
- export declare class PageResultGaCommunityInterviewDTO {
805
- list: GaCommunityInterviewDTO[];
806
- /** @format int64 */
807
- total: number;
808
- }
809
- export declare class PageResultSupervisionDisposalDTO {
810
- list: SupervisionDisposalDTO[];
811
- /** @format int64 */
812
- total: number;
813
- }
814
- export declare class PageResultSupervisionRecordDTO {
815
- list: SupervisionRecordDTORes[];
816
- /** @format int64 */
817
- total: number;
818
- }
819
- export declare class PageResultTrafficCongestionReportDTO {
820
- list: TrafficCongestionReportDTO[];
821
- /** @format int64 */
822
- total: number;
823
- }
824
- export declare class PageResultTrafficConstructionInterviewDTO {
825
- list: TrafficConstructionInterviewDTO[];
826
- /** @format int64 */
827
- total: number;
828
- }
829
- export declare class PageResultTrafficConstructionPlantDTO {
830
- list: TrafficConstructionPlantDTORes[];
831
- /** @format int64 */
832
- total: number;
833
- }
834
- export declare class Point {
835
- /** @format double */
836
- latitude: number;
837
- /** @format double */
838
- longitude: number;
839
- /** @format int64 */
840
- time: number;
841
- }
842
- export declare class Point0 {
843
- /** @format double */
844
- latitude: number;
845
- /** @format double */
846
- longitude: number;
847
- /** @format int64 */
848
- time: number;
849
- }
850
- export declare class SupervisionDisposalDTO {
851
- /** 责任人列表 */
852
- accountabilityUsers: SupervisionDisposalUserDTO[];
853
- /** 审核部门 */
854
- auditDepartment: string;
855
- auditDepartmentDetail: DepartmentRedundant;
856
- /** 审核接收部门 */
857
- auditReceiveDepartment: string;
858
- /**
859
- * 审核接收时间
860
- * @format int64
861
- */
862
- auditReceiveTime: number;
863
- /** 审核接收人 */
864
- auditReceiveUser: string;
865
- /**
866
- * 审核时间
867
- * @format int64
868
- */
869
- auditTime: number;
870
- /** 审核用户 */
871
- auditUser: string;
872
- auditUserDetail: UserRedundant;
1002
+ export declare class LatentDangerDTO {
1003
+ /** 发现地址 */
1004
+ address: string;
1005
+ /** 几岔路 */
1006
+ branchRoad: string;
873
1007
  /** 流程业务ID */
874
1008
  businessKey: string;
1009
+ /** 取消缘由 */
1010
+ cancelReason: string;
875
1011
  /**
876
1012
  * 是否被取消
877
1013
  * @example false
878
1014
  */
879
1015
  cancelled: boolean;
1016
+ /** 确认大队 */
1017
+ confirmDepartment: string;
1018
+ confirmDepartmentDetail: DepartmentRedundant;
1019
+ /**
1020
+ * 确认存在隐患
1021
+ * @example false
1022
+ */
1023
+ confirmExists: boolean;
1024
+ /**
1025
+ * 确认时间
1026
+ * @format int64
1027
+ */
1028
+ confirmTime: number;
1029
+ /** 确认用户 */
1030
+ confirmUser: string;
1031
+ confirmUserDetail: UserRedundant;
880
1032
  /**
881
1033
  * 创建时间
882
1034
  * @format int64
@@ -884,29 +1036,25 @@ export declare class SupervisionDisposalDTO {
884
1036
  createTime: number;
885
1037
  /** 创建人用户名 */
886
1038
  createUser: string;
1039
+ /** 隐患内容 */
1040
+ dangerContent: string;
1041
+ /** 地点米数 */
1042
+ ddms: string;
887
1043
  /**
888
1044
  * 是否已删除
889
1045
  * @example false
890
1046
  */
891
1047
  deleted: boolean;
892
- /** 处置内容: 其他 */
893
- disposalContentTypeOther: string;
894
- /** 处置内容:字典 */
895
- disposalContentTypes: string[];
896
- /** 处置部门 */
897
- disposalDepartment: string;
898
- disposalDepartmentDetail: DepartmentRedundant;
899
- /** 处置目标子类型:字典 */
900
- disposalTargetSubType: string;
901
- /** 处置目标类型:字典 */
902
- disposalTargetType: string;
903
- /**
904
- * 处置时间
905
- * @format int64
906
- */
907
- disposalTime: number;
908
- /** 处置受理人员列表 */
909
- disposalUsers: string[];
1048
+ /** 道路代码 */
1049
+ dldm: string;
1050
+ /** 道路路段名称 */
1051
+ dlldName: string;
1052
+ /** 道路类型 */
1053
+ dllx: string;
1054
+ /** 隐患道路行政区划(乡/街道级别) */
1055
+ dlxzqh: string;
1056
+ /** 行政区划名称 */
1057
+ dlxzqhName: string;
910
1058
  /**
911
1059
  * 修改时间
912
1060
  * @format int64
@@ -914,8 +1062,21 @@ export declare class SupervisionDisposalDTO {
914
1062
  editTime: number;
915
1063
  /** 修改人用户名 */
916
1064
  editUser: string;
917
- /** 反馈列表 */
918
- feedbacks: SupervisionDisposalFeedbackDTO[];
1065
+ /** 证据数据 */
1066
+ evidenceList: Evidence[];
1067
+ /** 反馈中队 */
1068
+ feedbackDepartment: string;
1069
+ feedbackDepartmentDetail: DepartmentRedundant;
1070
+ /**
1071
+ * 反馈时间
1072
+ * @format int64
1073
+ */
1074
+ feedbackTime: number;
1075
+ /** 反馈用户 */
1076
+ feedbackUser: string;
1077
+ feedbackUserDetail: UserRedundant;
1078
+ /** 反馈记录 */
1079
+ feedbacks: LatentDangerFeedbackDTO[];
919
1080
  /**
920
1081
  * 完成时间
921
1082
  * @format int64
@@ -946,10 +1107,1282 @@ export declare class SupervisionDisposalDTO {
946
1107
  * @format int64
947
1108
  */
948
1109
  id: number;
949
- /** 级别 */
950
- level: string;
951
- /** 经纬度 */
952
- lnglat: Point0;
1110
+ /** 路段代码 */
1111
+ lddm: string;
1112
+ /** 通知督导序号 */
1113
+ overseeXh: string;
1114
+ /** 流程ID */
1115
+ processId: string;
1116
+ /** 过程管控序号 */
1117
+ regulatoryXh: string;
1118
+ /** 备注 */
1119
+ remark: string;
1120
+ /** 上报中队 */
1121
+ reportDepartment: string;
1122
+ reportDepartmentDetail: DepartmentRedundant;
1123
+ /**
1124
+ * 上报存在隐患
1125
+ * @example false
1126
+ */
1127
+ reportExists: boolean;
1128
+ /** 上报定位 */
1129
+ reportLatlng: Point;
1130
+ /**
1131
+ * 上报时间
1132
+ * @format int64
1133
+ */
1134
+ reportTime: number;
1135
+ /** 状态 字典 traffic-yh-state */
1136
+ state: string;
1137
+ /** 督导处置流程ID */
1138
+ supervisionDisposalProcessId: string;
1139
+ /** 督导处置序号 */
1140
+ supervisionDisposalXh: string;
1141
+ /** 结果管控序号 */
1142
+ supervisionXh: string;
1143
+ /**
1144
+ * 是否有交通信号灯
1145
+ * @example false
1146
+ */
1147
+ trafficSignal: boolean;
1148
+ /** 序号 */
1149
+ xh: string;
1150
+ }
1151
+ export declare class LatentDangerFeedbackDTO {
1152
+ /** 审核理由 */
1153
+ auditReason: string;
1154
+ /** 隐患排查审核状态:字典 */
1155
+ auditState: string;
1156
+ /**
1157
+ * 审核时间
1158
+ * @format int64
1159
+ */
1160
+ auditTime: number;
1161
+ /** 审核用户 */
1162
+ auditUser: string;
1163
+ /** 审核人姓名 */
1164
+ auditUserXm: string;
1165
+ /** 流程业务ID */
1166
+ businessKey: string;
1167
+ /**
1168
+ * 是否被取消
1169
+ * @example false
1170
+ */
1171
+ cancelled: boolean;
1172
+ /**
1173
+ * 创建时间
1174
+ * @format int64
1175
+ */
1176
+ createTime: number;
1177
+ /** 创建人用户名 */
1178
+ createUser: string;
1179
+ /**
1180
+ * 是否已删除
1181
+ * @example false
1182
+ */
1183
+ deleted: boolean;
1184
+ /** 受理人部门 */
1185
+ department: string;
1186
+ departmentDetail: DepartmentRedundant;
1187
+ /**
1188
+ * 修改时间
1189
+ * @format int64
1190
+ */
1191
+ editTime: number;
1192
+ /** 修改人用户名 */
1193
+ editUser: string;
1194
+ /** 证据数据 */
1195
+ evidenceList: Evidence[];
1196
+ /** 反馈内容 */
1197
+ feedbackContent: string;
1198
+ /**
1199
+ * 反馈时间
1200
+ * @format int64
1201
+ */
1202
+ feedbackTime: number;
1203
+ /**
1204
+ * 完成时间
1205
+ * @format int64
1206
+ */
1207
+ finishTime: number;
1208
+ /**
1209
+ * 是否完成
1210
+ * @example false
1211
+ */
1212
+ finished: boolean;
1213
+ /**
1214
+ * 是否通知督导
1215
+ * @example false
1216
+ */
1217
+ hasOversee: boolean;
1218
+ /**
1219
+ * 是否有过程管控
1220
+ * @example false
1221
+ */
1222
+ hasRegulatory: boolean;
1223
+ /**
1224
+ * 是否有结果管控
1225
+ * @example false
1226
+ */
1227
+ hasSupervision: boolean;
1228
+ /**
1229
+ * 主键
1230
+ * @format int64
1231
+ */
1232
+ id: number;
1233
+ /** 隐患排查任务序号 */
1234
+ latentDangerXh: string;
1235
+ /** 通知督导序号 */
1236
+ overseeXh: string;
1237
+ /** 流程ID */
1238
+ processId: string;
1239
+ /** 过程管控序号 */
1240
+ regulatoryXh: string;
1241
+ /** 备注 */
1242
+ remark: string;
1243
+ /** 结果管控序号 */
1244
+ supervisionXh: string;
1245
+ /** 受理人 */
1246
+ user: string;
1247
+ userDetail: UserRedundant;
1248
+ /** 序号 */
1249
+ xh: string;
1250
+ }
1251
+ export declare class LatentDangerQueryBean {
1252
+ /**
1253
+ * 是否已取消
1254
+ * @example false
1255
+ */
1256
+ cancelled?: boolean;
1257
+ /** 审核部门 */
1258
+ confirmDepartment?: string;
1259
+ /**
1260
+ * 创建时间
1261
+ * @format int64
1262
+ */
1263
+ createTimeBegin?: number;
1264
+ /**
1265
+ * 创建时间
1266
+ * @format int64
1267
+ */
1268
+ createTimeEnd?: number;
1269
+ /** 上报用户 */
1270
+ createUser?: string;
1271
+ deleted?: boolean;
1272
+ /** 道路代码包含 */
1273
+ dldmIn?: string[];
1274
+ /** 道路行政区划包含 */
1275
+ dlxzqhIn?: string[];
1276
+ /** 反馈部门 */
1277
+ feedbackDepartment?: string;
1278
+ /**
1279
+ * 反馈时间
1280
+ * @format int64
1281
+ */
1282
+ feedbackTimeBegin?: number;
1283
+ /**
1284
+ * 反馈时间
1285
+ * @format int64
1286
+ */
1287
+ feedbackTimeEnd?: number;
1288
+ /**
1289
+ * 是否已完成
1290
+ * @example false
1291
+ */
1292
+ finished?: boolean;
1293
+ ids?: number[];
1294
+ /**
1295
+ * 是否包含下级审核部门
1296
+ * @example false
1297
+ */
1298
+ includeSubConfirmDepartment?: boolean;
1299
+ /**
1300
+ * 是否包含下级反馈部门
1301
+ * @example false
1302
+ */
1303
+ includeSubFeedbackDepartment?: boolean;
1304
+ /**
1305
+ * 是否包含下级上报部门
1306
+ * @example false
1307
+ */
1308
+ includeSubReportDepartment?: boolean;
1309
+ /** 路段代码包含 */
1310
+ lddmIn?: string[];
1311
+ orderBy?: string[];
1312
+ /** @format int32 */
1313
+ pageIndex?: number;
1314
+ /** @format int32 */
1315
+ pageSize?: number;
1316
+ /** 上报部门 */
1317
+ reportDepartment?: string;
1318
+ /**
1319
+ * 上报时间
1320
+ * @format int64
1321
+ */
1322
+ reportTimeBegin?: number;
1323
+ /**
1324
+ * 上报时间
1325
+ * @format int64
1326
+ */
1327
+ reportTimeEnd?: number;
1328
+ /** 状态包含 */
1329
+ stateIn?: string[];
1330
+ /**
1331
+ * 关联道路路段名称
1332
+ * @example false
1333
+ */
1334
+ withDlldName?: boolean;
1335
+ /**
1336
+ * 关联行政区划名称
1337
+ * @example false
1338
+ */
1339
+ withDlxzqhName?: boolean;
1340
+ /**
1341
+ * 查询证据信息
1342
+ * @example false
1343
+ */
1344
+ withEvidence?: boolean;
1345
+ /**
1346
+ * 关联查询反馈记录
1347
+ * @example false
1348
+ */
1349
+ withFeedbacks?: boolean;
1350
+ /** 序号 */
1351
+ xh?: string;
1352
+ }
1353
+ export declare class MockInterviewDTO {
1354
+ /** 流程业务ID */
1355
+ businessKey: string;
1356
+ /** 取消原因 */
1357
+ cancelReason: string;
1358
+ /**
1359
+ * 取消时间
1360
+ * @format int64
1361
+ */
1362
+ cancelTime: number;
1363
+ /**
1364
+ * 是否被取消
1365
+ * @example false
1366
+ */
1367
+ cancelled: boolean;
1368
+ /** 内容 */
1369
+ content: string;
1370
+ /**
1371
+ * 创建时间
1372
+ * @format int64
1373
+ */
1374
+ createTime: number;
1375
+ /** 创建人用户名 */
1376
+ createUser: string;
1377
+ /**
1378
+ * 是否已删除
1379
+ * @example false
1380
+ */
1381
+ deleted: boolean;
1382
+ /** 派发部门 */
1383
+ dispatchDepartment: string;
1384
+ dispatchDepartmentDetail: DepartmentRedundant;
1385
+ /**
1386
+ * 派发时间
1387
+ * @format int64
1388
+ */
1389
+ dispatchTime: number;
1390
+ /** 派发用户 */
1391
+ dispatchUser: string;
1392
+ dispatchUserDetail: UserRedundant;
1393
+ /**
1394
+ * 修改时间
1395
+ * @format int64
1396
+ */
1397
+ editTime: number;
1398
+ /** 修改人用户名 */
1399
+ editUser: string;
1400
+ /** 反馈部门 */
1401
+ feedbackDepartment: string;
1402
+ feedbackDepartmentDetail: DepartmentRedundant;
1403
+ /**
1404
+ * 反馈时间
1405
+ * @format int64
1406
+ */
1407
+ feedbackTime: number;
1408
+ /** 反馈部门 */
1409
+ feedbackUser: string;
1410
+ feedbackUserDetail: UserRedundant;
1411
+ /** 走访反馈列表 */
1412
+ feedbacks: MockInterviewFeedbackDTO[];
1413
+ /**
1414
+ * 完成时间
1415
+ * @format int64
1416
+ */
1417
+ finishTime: number;
1418
+ /**
1419
+ * 是否完成
1420
+ * @example false
1421
+ */
1422
+ finished: boolean;
1423
+ /**
1424
+ * 主键
1425
+ * @format int64
1426
+ */
1427
+ id: number;
1428
+ /** 流程ID */
1429
+ processId: string;
1430
+ /** 序号 */
1431
+ xh: string;
1432
+ }
1433
+ export declare class MockInterviewFeedbackDTO {
1434
+ /** 到达经纬度 */
1435
+ arrivedLatlng: Point;
1436
+ /**
1437
+ * 到达时间
1438
+ * @format int64
1439
+ */
1440
+ arrivedTime: number;
1441
+ /** 审核原因 */
1442
+ auditReason: string;
1443
+ /** 审核状态 */
1444
+ auditState: string;
1445
+ /**
1446
+ * 审核时间
1447
+ * @format int64
1448
+ */
1449
+ auditTime: number;
1450
+ /** 审核用户 */
1451
+ auditUser: string;
1452
+ auditUserDetail: UserRedundant;
1453
+ /** 流程业务ID */
1454
+ businessKey: string;
1455
+ /**
1456
+ * 取消时间
1457
+ * @format int64
1458
+ */
1459
+ cancelTime: number;
1460
+ /**
1461
+ * 是否被取消
1462
+ * @example false
1463
+ */
1464
+ cancelled: boolean;
1465
+ /**
1466
+ * 创建时间
1467
+ * @format int64
1468
+ */
1469
+ createTime: number;
1470
+ /** 创建人用户名 */
1471
+ createUser: string;
1472
+ /**
1473
+ * 是否已删除
1474
+ * @example false
1475
+ */
1476
+ deleted: boolean;
1477
+ /** 反馈部门 */
1478
+ department: string;
1479
+ departmentDetail: DepartmentRedundant;
1480
+ /**
1481
+ * 修改时间
1482
+ * @format int64
1483
+ */
1484
+ editTime: number;
1485
+ /** 修改人用户名 */
1486
+ editUser: string;
1487
+ /** 证据数据 */
1488
+ evidenceList: Evidence[];
1489
+ /** 反馈内容 */
1490
+ feedbackContent: string;
1491
+ /**
1492
+ * 反馈时间
1493
+ * @format int64
1494
+ */
1495
+ feedbackTime: number;
1496
+ /**
1497
+ * 完成时间
1498
+ * @format int64
1499
+ */
1500
+ finishTime: number;
1501
+ /**
1502
+ * 是否完成
1503
+ * @example false
1504
+ */
1505
+ finished: boolean;
1506
+ /**
1507
+ * 主键
1508
+ * @format int64
1509
+ */
1510
+ id: number;
1511
+ /** 走访反馈序号 */
1512
+ mockInterviewXh: string;
1513
+ /** 流程ID */
1514
+ processId: string;
1515
+ /**
1516
+ * 接收时间
1517
+ * @format int64
1518
+ */
1519
+ receiveTime: number;
1520
+ /** 拒收理由 */
1521
+ rejectReason: string;
1522
+ /** 备注 */
1523
+ remark: string;
1524
+ /** 反馈部门 */
1525
+ user: string;
1526
+ userDetail: UserRedundant;
1527
+ /** 序号 */
1528
+ xh: string;
1529
+ }
1530
+ export declare class MockInterviewPageQuery {
1531
+ /**
1532
+ * 是否已取消
1533
+ * @example false
1534
+ */
1535
+ cancelled?: boolean;
1536
+ /**
1537
+ * 创建时间
1538
+ * @format int64
1539
+ */
1540
+ createTimeBegin?: number;
1541
+ /**
1542
+ * 创建时间
1543
+ * @format int64
1544
+ */
1545
+ createTimeEnd?: number;
1546
+ deleted?: boolean;
1547
+ /** 派发部门 */
1548
+ dispatchDepartment?: string;
1549
+ /**
1550
+ * 派单时间
1551
+ * @format int64
1552
+ */
1553
+ dispatchTimeBegin?: number;
1554
+ /**
1555
+ * 派单时间
1556
+ * @format int64
1557
+ */
1558
+ dispatchTimeEnd?: number;
1559
+ /**
1560
+ * 走访时间
1561
+ * @format int64
1562
+ */
1563
+ feebackTimeBegin?: number;
1564
+ /**
1565
+ * 走访时间
1566
+ * @format int64
1567
+ */
1568
+ feebackTimeEnd?: number;
1569
+ /** 反馈部门 */
1570
+ feedbackDepartment?: string;
1571
+ /** 反馈用户 */
1572
+ feedbackUser?: string;
1573
+ /**
1574
+ * 是否已完成
1575
+ * @example false
1576
+ */
1577
+ finished?: boolean;
1578
+ /**
1579
+ * 主键
1580
+ * @format int64
1581
+ */
1582
+ id?: number;
1583
+ /** 主键包含 */
1584
+ idIn?: number[];
1585
+ ids?: number[];
1586
+ /**
1587
+ * 是否包含下级派发部门
1588
+ * @example false
1589
+ */
1590
+ includeSubDispatchDepartment?: boolean;
1591
+ /**
1592
+ * 是否包含下级反馈部门
1593
+ * @example false
1594
+ */
1595
+ includeSubFeedbackDepartment?: boolean;
1596
+ orderBy?: string[];
1597
+ /** @format int32 */
1598
+ pageIndex?: number;
1599
+ /** @format int32 */
1600
+ pageSize?: number;
1601
+ /**
1602
+ * 是否查询证据列表
1603
+ * @example false
1604
+ */
1605
+ withEvidence?: boolean;
1606
+ /**
1607
+ * 是否查询反馈列表
1608
+ * @example false
1609
+ */
1610
+ withFeedback?: boolean;
1611
+ /** 序号 */
1612
+ xh?: string;
1613
+ }
1614
+ export declare class PageResultDispatchTaskDTO {
1615
+ list: DispatchTaskDTO[];
1616
+ /** @format int64 */
1617
+ total: number;
1618
+ }
1619
+ export declare class PageResultDivisionDTO {
1620
+ list: DivisionDTORes[];
1621
+ /** @format int64 */
1622
+ total: number;
1623
+ }
1624
+ export declare class PageResultGaCommunityDTO {
1625
+ list: GaCommunityDTORes[];
1626
+ /** @format int64 */
1627
+ total: number;
1628
+ }
1629
+ export declare class PageResultGaCommunityInterviewDTO {
1630
+ list: GaCommunityInterviewDTO[];
1631
+ /** @format int64 */
1632
+ total: number;
1633
+ }
1634
+ export declare class PageResultLatentDangerDTO {
1635
+ list: LatentDangerDTO[];
1636
+ /** @format int64 */
1637
+ total: number;
1638
+ }
1639
+ export declare class PageResultMockInterviewDTO {
1640
+ list: MockInterviewDTO[];
1641
+ /** @format int64 */
1642
+ total: number;
1643
+ }
1644
+ export declare class PageResultRoadworksDTO {
1645
+ list: RoadworksDTO[];
1646
+ /** @format int64 */
1647
+ total: number;
1648
+ }
1649
+ export declare class PageResultSupervisionDisposalDTO {
1650
+ list: SupervisionDisposalDTO[];
1651
+ /** @format int64 */
1652
+ total: number;
1653
+ }
1654
+ export declare class PageResultSupervisionRecordDTO {
1655
+ list: SupervisionRecordDTORes[];
1656
+ /** @format int64 */
1657
+ total: number;
1658
+ }
1659
+ export declare class PageResultTrafficCongestionReportDTO {
1660
+ list: TrafficCongestionReportDTO[];
1661
+ /** @format int64 */
1662
+ total: number;
1663
+ }
1664
+ export declare class PageResultTrafficConstructionInterviewDTO {
1665
+ list: TrafficConstructionInterviewDTO[];
1666
+ /** @format int64 */
1667
+ total: number;
1668
+ }
1669
+ export declare class PageResultTrafficConstructionPlantDTO {
1670
+ list: TrafficConstructionPlantDTORes[];
1671
+ /** @format int64 */
1672
+ total: number;
1673
+ }
1674
+ export declare class Point {
1675
+ /** @format double */
1676
+ latitude: number;
1677
+ /** @format double */
1678
+ longitude: number;
1679
+ /** @format int64 */
1680
+ time: number;
1681
+ }
1682
+ export declare class Point0 {
1683
+ /** @format double */
1684
+ latitude: number;
1685
+ /** @format double */
1686
+ longitude: number;
1687
+ /** @format int64 */
1688
+ time: number;
1689
+ }
1690
+ export declare class RoadworksConfirmDTO {
1691
+ /** 审核状态 */
1692
+ auditState: string;
1693
+ /**
1694
+ * 审核时间
1695
+ * @format int64
1696
+ */
1697
+ auditTime: number;
1698
+ /** 审核用户 */
1699
+ auditUser: string;
1700
+ auditUserDetail: UserRedundant;
1701
+ /** 流程业务ID */
1702
+ businessKey: string;
1703
+ /**
1704
+ * 是否被取消
1705
+ * @example false
1706
+ */
1707
+ cancelled: boolean;
1708
+ /**
1709
+ * 创建时间
1710
+ * @format int64
1711
+ */
1712
+ createTime: number;
1713
+ /** 创建人用户名 */
1714
+ createUser: string;
1715
+ /**
1716
+ * 是否已删除
1717
+ * @example false
1718
+ */
1719
+ deleted: boolean;
1720
+ /**
1721
+ * 修改时间
1722
+ * @format int64
1723
+ */
1724
+ editTime: number;
1725
+ /** 修改人用户名 */
1726
+ editUser: string;
1727
+ /**
1728
+ * 完成时间
1729
+ * @format int64
1730
+ */
1731
+ finishTime: number;
1732
+ /**
1733
+ * 是否完成
1734
+ * @example false
1735
+ */
1736
+ finished: boolean;
1737
+ /**
1738
+ * 是否通知督导
1739
+ * @example false
1740
+ */
1741
+ hasOversee: boolean;
1742
+ /**
1743
+ * 是否有过程管控
1744
+ * @example false
1745
+ */
1746
+ hasRegulatory: boolean;
1747
+ /**
1748
+ * 是否有结果管控
1749
+ * @example false
1750
+ */
1751
+ hasSupervision: boolean;
1752
+ /**
1753
+ * 主键
1754
+ * @format int64
1755
+ */
1756
+ id: number;
1757
+ /** 通知督导序号 */
1758
+ overseeXh: string;
1759
+ /** 流程ID */
1760
+ processId: string;
1761
+ /** 过程管控序号 */
1762
+ regulatoryXh: string;
1763
+ /** 驳回原因 */
1764
+ rejectReason: string;
1765
+ /** 道路施工任务序号 */
1766
+ roadworkXh: string;
1767
+ /** 结果管控序号 */
1768
+ supervisionXh: string;
1769
+ /** 序号 */
1770
+ xh: string;
1771
+ }
1772
+ export declare class RoadworksDTO {
1773
+ /**
1774
+ * 实际完工时间
1775
+ * @format int64
1776
+ */
1777
+ actualEndTime: number;
1778
+ /**
1779
+ * 实际开工时间
1780
+ * @format int64
1781
+ */
1782
+ actualStartTime: number;
1783
+ /** 施工地址 */
1784
+ address: string;
1785
+ /** 施工内容 */
1786
+ briefContent: string;
1787
+ /** 流程业务ID */
1788
+ businessKey: string;
1789
+ /**
1790
+ * 取消时间
1791
+ * @format int64
1792
+ */
1793
+ cancelTime: number;
1794
+ /**
1795
+ * 是否被取消
1796
+ * @example false
1797
+ */
1798
+ cancelled: boolean;
1799
+ /**
1800
+ * 审核确认次数
1801
+ * @format int64
1802
+ */
1803
+ confirmCount: number;
1804
+ /** 确认部门 */
1805
+ confirmDepartment: string;
1806
+ confirmDepartmentDetail: DepartmentRedundant;
1807
+ /** 审核信息 */
1808
+ confirmRecords: RoadworksConfirmDTO[];
1809
+ /**
1810
+ * 确认时间
1811
+ * @format int64
1812
+ */
1813
+ confirmTime: number;
1814
+ /** 确认用户 */
1815
+ confirmUser: string;
1816
+ confirmUserDetail: UserRedundant;
1817
+ /**
1818
+ * 创建时间
1819
+ * @format int64
1820
+ */
1821
+ createTime: number;
1822
+ /** 创建人用户名 */
1823
+ createUser: string;
1824
+ /**
1825
+ * 是否已删除
1826
+ * @example false
1827
+ */
1828
+ deleted: boolean;
1829
+ /**
1830
+ * 修改时间
1831
+ * @format int64
1832
+ */
1833
+ editTime: number;
1834
+ /** 修改人用户名 */
1835
+ editUser: string;
1836
+ /**
1837
+ * 完工审核次数
1838
+ * @format int64
1839
+ */
1840
+ endAuditCount: number;
1841
+ /**
1842
+ * 完工巡区审核时间
1843
+ * @format int64
1844
+ */
1845
+ endAuditTime: number;
1846
+ /** 完工巡区审核用户 */
1847
+ endAuditUser: string;
1848
+ endAuditUserDetail: UserRedundant;
1849
+ /** 完工通知整改备注 */
1850
+ endNotifyRemark: string;
1851
+ /**
1852
+ * 完工通知整改时间
1853
+ * @format int64
1854
+ */
1855
+ endNotifyTime: number;
1856
+ /** 完工通知整改用户 */
1857
+ endNotifyUser: string;
1858
+ endNotifyUserDetail: UserRedundant;
1859
+ /**
1860
+ * 完工安全措施确认满足
1861
+ * @example false
1862
+ */
1863
+ endSatisfied: boolean;
1864
+ /** 完工现场签到经纬度 */
1865
+ endVerLatlng: Point;
1866
+ /**
1867
+ * 完工核查时间
1868
+ * @format int64
1869
+ */
1870
+ endVerifyTime: number;
1871
+ /** 完工核查类型 1 视频核查 2 现场警力核查 */
1872
+ endVerifyType: string;
1873
+ /** 完工数勤核查用户 */
1874
+ endVerifyUser: string;
1875
+ endVerifyUserDetail: UserRedundant;
1876
+ /** 证据数据 */
1877
+ evidenceList: Evidence[];
1878
+ /**
1879
+ * 完成时间
1880
+ * @format int64
1881
+ */
1882
+ finishTime: number;
1883
+ /**
1884
+ * 是否完成
1885
+ * @example false
1886
+ */
1887
+ finished: boolean;
1888
+ /**
1889
+ * 是否通知督导
1890
+ * @example false
1891
+ */
1892
+ hasOversee: boolean;
1893
+ /**
1894
+ * 是否有过程管控
1895
+ * @example false
1896
+ */
1897
+ hasRegulatory: boolean;
1898
+ /**
1899
+ * 是否有结果管控
1900
+ * @example false
1901
+ */
1902
+ hasSupervision: boolean;
1903
+ /**
1904
+ * 主键
1905
+ * @format int64
1906
+ */
1907
+ id: number;
1908
+ /** 街道行政区划 */
1909
+ jdxzqh: string;
1910
+ /** 街道名称 */
1911
+ jdxzqhName: string;
1912
+ /**
1913
+ * 机动车道路总数
1914
+ * @format int32
1915
+ */
1916
+ lanesTotal: number;
1917
+ /**
1918
+ * 机动车道占到施工总数
1919
+ * @format int32
1920
+ */
1921
+ lanesWork: number;
1922
+ /**
1923
+ * 是否夜间施工
1924
+ * @example false
1925
+ */
1926
+ nightWorks: boolean;
1927
+ /** 通知督导序号 */
1928
+ overseeXh: string;
1929
+ /**
1930
+ * 施工计划结束时间
1931
+ * @format int64
1932
+ */
1933
+ planEndTime: number;
1934
+ /**
1935
+ * 施工计划开始时间
1936
+ * @format int64
1937
+ */
1938
+ planStartTime: number;
1939
+ /** 流程ID */
1940
+ processId: string;
1941
+ /** 施工进度安全措施信息 */
1942
+ progressFeedbacks: RoadworksProgressDTO[];
1943
+ /** 过程管控序号 */
1944
+ regulatoryXh: string;
1945
+ /** 上报备注 */
1946
+ reportRemark: string;
1947
+ /**
1948
+ * 上报时间
1949
+ * @format int64
1950
+ */
1951
+ reportTime: number;
1952
+ /**
1953
+ * 开工审核次数
1954
+ * @format int64
1955
+ */
1956
+ startAuditCount: number;
1957
+ /**
1958
+ * 开工巡区审核时间
1959
+ * @format int64
1960
+ */
1961
+ startAuditTime: number;
1962
+ /** 开工巡区审核用户 */
1963
+ startAuditUser: string;
1964
+ startAuditUserDetail: UserRedundant;
1965
+ /** 开工通知整改备注 */
1966
+ startNotifyRemark: string;
1967
+ /**
1968
+ * 开工通知整改时间
1969
+ * @format int64
1970
+ */
1971
+ startNotifyTime: number;
1972
+ /** 开工通知整改用户 */
1973
+ startNotifyUser: string;
1974
+ startNotifyUserDetail: UserRedundant;
1975
+ /**
1976
+ * 开工安全措施确认满足
1977
+ * @example false
1978
+ */
1979
+ startSatisfied: boolean;
1980
+ /** 开工现场签到经纬度 */
1981
+ startVerLatlng: Point;
1982
+ /**
1983
+ * 开工核查时间
1984
+ * @format int64
1985
+ */
1986
+ startVerifyTime: number;
1987
+ /** 开工核查类型 1 视频核查 2 现场警力核查 */
1988
+ startVerifyType: string;
1989
+ /** 开工数勤核查用户 */
1990
+ startVerifyUser: string;
1991
+ startVerifyUserDetail: UserRedundant;
1992
+ /** 状态 1 报审待审核 2 报审驳回 3 待开工 4 开工待审核 5 开工重新上报 6 开工待核查 7 开工待整改 8 等待完工 9 完工待审核 10 完工重新上报 11 完工待核查 12 完工待整改 13 完成 14 报审撤销 */
1993
+ state: string;
1994
+ /** 督导处置流程ID */
1995
+ supervisionDisposalProcessId: string;
1996
+ /** 督导处置序号 */
1997
+ supervisionDisposalXh: string;
1998
+ /** 结果管控序号 */
1999
+ supervisionXh: string;
2000
+ /** 跟进部门 */
2001
+ traceDepartment: string;
2002
+ traceDepartmentDetail: DepartmentRedundant;
2003
+ /** 施工单位 */
2004
+ workContractor: string;
2005
+ /** 施工方向 */
2006
+ workDirection: string;
2007
+ /** 建设单位 */
2008
+ workEmployer: string;
2009
+ /** 工地定位 */
2010
+ workLatlng: Point;
2011
+ /** 施工点位类型 */
2012
+ workPosition: string;
2013
+ /** 负责人姓名 */
2014
+ workPrName: string;
2015
+ /** 负责人联系电话 */
2016
+ workPrTel: string;
2017
+ /** 防护措施描述 */
2018
+ workSafeguard: string;
2019
+ /** 占道施工范围 */
2020
+ workScope: string;
2021
+ /** 序号 */
2022
+ xh: string;
2023
+ }
2024
+ export declare class RoadworksPosition {
2025
+ /** 施工地址 */
2026
+ address?: string;
2027
+ /** 街道行政区划 */
2028
+ jdxzqh?: string;
2029
+ /**
2030
+ * 机动车道路总数
2031
+ * @format int32
2032
+ */
2033
+ lanesTotal?: number;
2034
+ /**
2035
+ * 机动车道占道施工总数
2036
+ * @format int32
2037
+ */
2038
+ lanesWork?: number;
2039
+ /**
2040
+ * 是否夜间施工
2041
+ * @example false
2042
+ */
2043
+ nightWorks?: boolean;
2044
+ /**
2045
+ * 施工计划结束时间
2046
+ * @format int64
2047
+ */
2048
+ planEndTime?: number;
2049
+ /**
2050
+ * 施工计划开始时间
2051
+ * @format int64
2052
+ */
2053
+ planStartTime?: number;
2054
+ /** 上报备注 */
2055
+ reportRemark?: string;
2056
+ /** 施工方向 */
2057
+ workDirection?: string;
2058
+ /** 工地定位 */
2059
+ workLatlng?: Point;
2060
+ /** 施工点位类型 1 人行道 2 机动车道 3 非机动车道 */
2061
+ workPosition?: string;
2062
+ /** 防护措施描述 */
2063
+ workSafeguard?: string;
2064
+ /** 占道施工范围 */
2065
+ workScope?: string;
2066
+ }
2067
+ export declare class RoadworksPositionResult {
2068
+ /** 施工地址 */
2069
+ address: string;
2070
+ /** 失败原因 */
2071
+ failReason: string;
2072
+ /**
2073
+ * 是否成功
2074
+ * @example false
2075
+ */
2076
+ success: boolean;
2077
+ }
2078
+ export declare class RoadworksProgressDTO {
2079
+ /** 审核原因 */
2080
+ auditReason: string;
2081
+ /** 审核状态 */
2082
+ auditState: string;
2083
+ /**
2084
+ * 审核时间
2085
+ * @format int64
2086
+ */
2087
+ auditTime: number;
2088
+ /** 审核用户 */
2089
+ auditUser: string;
2090
+ auditUserDetail: UserRedundant;
2091
+ /** 流程业务ID */
2092
+ businessKey: string;
2093
+ /**
2094
+ * 是否被取消
2095
+ * @example false
2096
+ */
2097
+ cancelled: boolean;
2098
+ /**
2099
+ * 创建时间
2100
+ * @format int64
2101
+ */
2102
+ createTime: number;
2103
+ /** 创建人用户名 */
2104
+ createUser: string;
2105
+ /**
2106
+ * 是否已删除
2107
+ * @example false
2108
+ */
2109
+ deleted: boolean;
2110
+ /**
2111
+ * 修改时间
2112
+ * @format int64
2113
+ */
2114
+ editTime: number;
2115
+ /** 修改人用户名 */
2116
+ editUser: string;
2117
+ /** 证据数据 */
2118
+ evidenceList: Evidence[];
2119
+ /**
2120
+ * 反馈时间
2121
+ * @format int64
2122
+ */
2123
+ feedbackTime: number;
2124
+ /** 反馈类型 */
2125
+ feedbackType: string;
2126
+ /**
2127
+ * 完成时间
2128
+ * @format int64
2129
+ */
2130
+ finishTime: number;
2131
+ /**
2132
+ * 是否完成
2133
+ * @example false
2134
+ */
2135
+ finished: boolean;
2136
+ /**
2137
+ * 是否通知督导
2138
+ * @example false
2139
+ */
2140
+ hasOversee: boolean;
2141
+ /**
2142
+ * 是否有过程管控
2143
+ * @example false
2144
+ */
2145
+ hasRegulatory: boolean;
2146
+ /**
2147
+ * 是否有结果管控
2148
+ * @example false
2149
+ */
2150
+ hasSupervision: boolean;
2151
+ /**
2152
+ * 主键
2153
+ * @format int64
2154
+ */
2155
+ id: number;
2156
+ /** 通知督导序号 */
2157
+ overseeXh: string;
2158
+ /** 流程ID */
2159
+ processId: string;
2160
+ /** 过程管控序号 */
2161
+ regulatoryXh: string;
2162
+ /** 道路施工任务序号 */
2163
+ roadworkXh: string;
2164
+ /** 结果管控序号 */
2165
+ supervisionXh: string;
2166
+ /** 序号 */
2167
+ xh: string;
2168
+ }
2169
+ export declare class RoadworksQueryBean {
2170
+ /** 施工内容模糊查询 */
2171
+ briefContentLike?: string;
2172
+ /**
2173
+ * 是否已取消
2174
+ * @example false
2175
+ */
2176
+ cancelled?: boolean;
2177
+ /** 审核部门 */
2178
+ confirmDepartment?: string;
2179
+ /** 上报用户 */
2180
+ createUser?: string;
2181
+ deleted?: boolean;
2182
+ /**
2183
+ * 是否已完成
2184
+ * @example false
2185
+ */
2186
+ finished?: boolean;
2187
+ ids?: number[];
2188
+ /**
2189
+ * 是否包含下级审核部门
2190
+ * @example false
2191
+ */
2192
+ includeSubConfirmDepartment?: boolean;
2193
+ /**
2194
+ * 是否包含下级跟进部门
2195
+ * @example false
2196
+ */
2197
+ includeSubTraceDepartment?: boolean;
2198
+ /** 街道行政区划包含 */
2199
+ jdxzqhIn?: string[];
2200
+ orderBy?: string[];
2201
+ /** @format int32 */
2202
+ pageIndex?: number;
2203
+ /** @format int32 */
2204
+ pageSize?: number;
2205
+ /**
2206
+ * 上报时间
2207
+ * @format int64
2208
+ */
2209
+ reportTimeBegin?: number;
2210
+ /**
2211
+ * 上报时间
2212
+ * @format int64
2213
+ */
2214
+ reportTimeEnd?: number;
2215
+ /** 状态包含 */
2216
+ stateIn?: string[];
2217
+ /** 跟进部门 */
2218
+ traceDepartment?: string;
2219
+ /** 后续跟进用户,包含开工完工的审核、核查用户 */
2220
+ traceUser?: string;
2221
+ /**
2222
+ * 关联查询审核记录
2223
+ * @example false
2224
+ */
2225
+ withConfirmRecords?: boolean;
2226
+ /**
2227
+ * 查询证据信息
2228
+ * @example false
2229
+ */
2230
+ withEvidence?: boolean;
2231
+ /**
2232
+ * 关联街道行政区划名称
2233
+ * @example false
2234
+ */
2235
+ withJdxzqhName?: boolean;
2236
+ /**
2237
+ * 关联查询进度记录
2238
+ * @example false
2239
+ */
2240
+ withProgresses?: boolean;
2241
+ /** 序号 */
2242
+ xh?: string;
2243
+ }
2244
+ export declare class RoadworksReportRequest {
2245
+ /** 施工内容 */
2246
+ briefContent?: string;
2247
+ /** 上报大队 */
2248
+ department?: string;
2249
+ /** 施工点位 */
2250
+ positionList?: RoadworksPosition[];
2251
+ /** 上报来源 */
2252
+ reportOrigin?: string;
2253
+ /** 施工单位 */
2254
+ workContractor?: string;
2255
+ /** 建设单位 */
2256
+ workEmployer?: string;
2257
+ /** 负责人姓名 */
2258
+ workPrName?: string;
2259
+ /** 负责人联系电话 */
2260
+ workPrTel?: string;
2261
+ }
2262
+ export declare class SelfRoadworksQueryBean {
2263
+ /** 施工内容模糊查询 */
2264
+ briefContentLike?: string;
2265
+ orderBy?: string[];
2266
+ /** @format int32 */
2267
+ pageIndex?: number;
2268
+ /** @format int32 */
2269
+ pageSize?: number;
2270
+ /**
2271
+ * 上报时间
2272
+ * @format int64
2273
+ */
2274
+ reportTimeBegin?: number;
2275
+ /**
2276
+ * 上报时间
2277
+ * @format int64
2278
+ */
2279
+ reportTimeEnd?: number;
2280
+ /** 状态包含 */
2281
+ stateIn?: string[];
2282
+ }
2283
+ export declare class SupervisionDisposalDTO {
2284
+ /** 责任人列表 */
2285
+ accountabilityUsers: SupervisionDisposalUserDTO[];
2286
+ /** 审核部门 */
2287
+ auditDepartment: string;
2288
+ auditDepartmentDetail: DepartmentRedundant;
2289
+ /** 审核接收部门 */
2290
+ auditReceiveDepartment: string;
2291
+ /**
2292
+ * 审核接收时间
2293
+ * @format int64
2294
+ */
2295
+ auditReceiveTime: number;
2296
+ /** 审核接收人 */
2297
+ auditReceiveUser: string;
2298
+ /**
2299
+ * 审核时间
2300
+ * @format int64
2301
+ */
2302
+ auditTime: number;
2303
+ /** 审核用户 */
2304
+ auditUser: string;
2305
+ auditUserDetail: UserRedundant;
2306
+ /** 流程业务ID */
2307
+ businessKey: string;
2308
+ /**
2309
+ * 是否被取消
2310
+ * @example false
2311
+ */
2312
+ cancelled: boolean;
2313
+ /**
2314
+ * 创建时间
2315
+ * @format int64
2316
+ */
2317
+ createTime: number;
2318
+ /** 创建人用户名 */
2319
+ createUser: string;
2320
+ /**
2321
+ * 是否已删除
2322
+ * @example false
2323
+ */
2324
+ deleted: boolean;
2325
+ /** 处置内容: 其他 */
2326
+ disposalContentTypeOther: string;
2327
+ /** 处置内容:字典 */
2328
+ disposalContentTypes: string[];
2329
+ /** 处置部门 */
2330
+ disposalDepartment: string;
2331
+ disposalDepartmentDetail: DepartmentRedundant;
2332
+ /** 处置目标子类型:字典 */
2333
+ disposalTargetSubType: string;
2334
+ /** 处置目标类型:字典 */
2335
+ disposalTargetType: string;
2336
+ /**
2337
+ * 处置时间
2338
+ * @format int64
2339
+ */
2340
+ disposalTime: number;
2341
+ /** 处置受理人员列表 */
2342
+ disposalUsers: string[];
2343
+ /**
2344
+ * 修改时间
2345
+ * @format int64
2346
+ */
2347
+ editTime: number;
2348
+ /** 修改人用户名 */
2349
+ editUser: string;
2350
+ /** 反馈列表 */
2351
+ feedbacks: SupervisionDisposalFeedbackDTO[];
2352
+ /**
2353
+ * 完成时间
2354
+ * @format int64
2355
+ */
2356
+ finishTime: number;
2357
+ /**
2358
+ * 是否完成
2359
+ * @example false
2360
+ */
2361
+ finished: boolean;
2362
+ /**
2363
+ * 是否通知督导
2364
+ * @example false
2365
+ */
2366
+ hasOversee: boolean;
2367
+ /**
2368
+ * 是否有过程管控
2369
+ * @example false
2370
+ */
2371
+ hasRegulatory: boolean;
2372
+ /**
2373
+ * 是否有结果管控
2374
+ * @example false
2375
+ */
2376
+ hasSupervision: boolean;
2377
+ /**
2378
+ * 主键
2379
+ * @format int64
2380
+ */
2381
+ id: number;
2382
+ /** 级别 */
2383
+ level: string;
2384
+ /** 经纬度 */
2385
+ lnglat: Point0;
953
2386
  /** 通知督导序号 */
954
2387
  overseeXh: string;
955
2388
  /** 流程ID */
@@ -2282,6 +3715,20 @@ export declare class UserRedundantRes {
2282
3715
  departmentName: string;
2283
3716
  realName: string;
2284
3717
  }
3718
+ export declare class ImportPayload {
3719
+ /**
3720
+ * file
3721
+ * @format binary
3722
+ */
3723
+ file: File;
3724
+ }
3725
+ export declare class CommunityBatchPayload {
3726
+ /**
3727
+ * file
3728
+ * @format binary
3729
+ */
3730
+ file: File;
3731
+ }
2285
3732
  export declare class BatchPayload {
2286
3733
  /**
2287
3734
  * file
@@ -2329,6 +3776,22 @@ interface HttpClient {
2329
3776
  declare class Api {
2330
3777
  private http;
2331
3778
  constructor(http: HttpClient);
3779
+ baseInterview: {
3780
+ /**
3781
+ * No description
3782
+ *
3783
+ * @tags baseInterview
3784
+ * @name Report
3785
+ * @summary 基础走访上报
3786
+ * @request POST:/sz-traffic-service/base-interview/report
3787
+ * @response `200` `void` OK
3788
+ * @response `201` `void` Created
3789
+ * @response `401` `void` Unauthorized
3790
+ * @response `403` `void` Forbidden
3791
+ * @response `404` `void` Not Found
3792
+ */
3793
+ report: (data: BaseInterviewRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3794
+ };
2332
3795
  dispatchTask: {
2333
3796
  /**
2334
3797
  * No description
@@ -2357,78 +3820,306 @@ declare class Api {
2357
3820
  * @response `403` `void` Forbidden
2358
3821
  * @response `404` `void` Not Found
2359
3822
  */
2360
- heatmap: (data: DispatchTaskQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<HeatmapPoint[]>;
3823
+ heatmap: (data: DispatchTaskQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<HeatmapPoint[]>;
3824
+ /**
3825
+ * No description
3826
+ *
3827
+ * @tags dispatchTask
3828
+ * @name Page
3829
+ * @summary 分页查询
3830
+ * @request POST:/sz-traffic-service/dispatch-task/page
3831
+ * @response `200` `PageResultDispatchTaskDTO` OK
3832
+ * @response `201` `void` Created
3833
+ * @response `401` `void` Unauthorized
3834
+ * @response `403` `void` Forbidden
3835
+ * @response `404` `void` Not Found
3836
+ */
3837
+ page: (data: DispatchTaskQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultDispatchTaskDTO>;
3838
+ /**
3839
+ * No description
3840
+ *
3841
+ * @tags dispatchTask
3842
+ * @name GetByXh
3843
+ * @summary 按序号查询
3844
+ * @request GET:/sz-traffic-service/dispatch-task/{xh}
3845
+ * @response `200` `DispatchTaskDTO` OK
3846
+ * @response `401` `void` Unauthorized
3847
+ * @response `403` `void` Forbidden
3848
+ * @response `404` `void` Not Found
3849
+ */
3850
+ getByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<DispatchTaskDTO>;
3851
+ /**
3852
+ * No description
3853
+ *
3854
+ * @tags dispatchTask
3855
+ * @name DeleteByXh
3856
+ * @summary 按序号删除
3857
+ * @request DELETE:/sz-traffic-service/dispatch-task/{xh}
3858
+ * @response `200` `void` OK
3859
+ * @response `204` `void` No Content
3860
+ * @response `401` `void` Unauthorized
3861
+ * @response `403` `void` Forbidden
3862
+ */
3863
+ deleteByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3864
+ /**
3865
+ * No description
3866
+ *
3867
+ * @tags dispatchTask
3868
+ * @name FeedbackByXh
3869
+ * @summary 按序号查询反馈列表
3870
+ * @request GET:/sz-traffic-service/dispatch-task/{xh}/feedback
3871
+ * @response `200` `(DispatchTaskFeedbackDTO)[]` OK
3872
+ * @response `401` `void` Unauthorized
3873
+ * @response `403` `void` Forbidden
3874
+ * @response `404` `void` Not Found
3875
+ */
3876
+ feedbackByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<DispatchTaskFeedbackDTO[]>;
3877
+ /**
3878
+ * No description
3879
+ *
3880
+ * @tags dispatchTask
3881
+ * @name PutRecoverByXh
3882
+ * @summary 按序号恢复
3883
+ * @request PUT:/sz-traffic-service/dispatch-task/{xh}/recover
3884
+ * @response `200` `void` OK
3885
+ * @response `201` `void` Created
3886
+ * @response `401` `void` Unauthorized
3887
+ * @response `403` `void` Forbidden
3888
+ * @response `404` `void` Not Found
3889
+ */
3890
+ putRecoverByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3891
+ };
3892
+ division: {
3893
+ /**
3894
+ * @description 所需权限:division:manage
3895
+ *
3896
+ * @tags division
3897
+ * @name Division
3898
+ * @summary 新增/修改行政区划信息
3899
+ * @request POST:/sz-traffic-service/division
3900
+ * @response `200` `number` OK
3901
+ * @response `201` `void` Created
3902
+ * @response `401` `void` Unauthorized
3903
+ * @response `403` `void` Forbidden
3904
+ * @response `404` `void` Not Found
3905
+ */
3906
+ division: (data: DivisionDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<number>;
3907
+ /**
3908
+ * No description
3909
+ *
3910
+ * @tags division
3911
+ * @name All
3912
+ * @summary 行政区划树
3913
+ * @request GET:/sz-traffic-service/division/all
3914
+ * @response `200` `(DivisionTree)[]` OK
3915
+ * @response `401` `void` Unauthorized
3916
+ * @response `403` `void` Forbidden
3917
+ * @response `404` `void` Not Found
3918
+ */
3919
+ all: (axiosConfig?: AxiosRequestConfig) => Promise<DivisionTree[]>;
3920
+ /**
3921
+ * No description
3922
+ *
3923
+ * @tags division
3924
+ * @name CodeByCode
3925
+ * @summary 按照id查询
3926
+ * @request GET:/sz-traffic-service/division/code/{code}
3927
+ * @response `200` `DivisionDTORes` OK
3928
+ * @response `401` `void` Unauthorized
3929
+ * @response `403` `void` Forbidden
3930
+ * @response `404` `void` Not Found
3931
+ */
3932
+ codeByCode: (code: string, axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes>;
3933
+ /**
3934
+ * @description 所需权限:division:manage
3935
+ *
3936
+ * @tags division
3937
+ * @name DisableById
3938
+ * @summary 禁用区划
3939
+ * @request GET:/sz-traffic-service/division/disable/{id}
3940
+ * @response `200` `DivisionDTORes` OK
3941
+ * @response `401` `void` Unauthorized
3942
+ * @response `403` `void` Forbidden
3943
+ * @response `404` `void` Not Found
3944
+ */
3945
+ disableById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes>;
3946
+ /**
3947
+ * @description 所需权限:division:manage
3948
+ *
3949
+ * @tags division
3950
+ * @name EnableById
3951
+ * @summary 启用区划
3952
+ * @request GET:/sz-traffic-service/division/enable/{id}
3953
+ * @response `200` `DivisionDTORes` OK
3954
+ * @response `401` `void` Unauthorized
3955
+ * @response `403` `void` Forbidden
3956
+ * @response `404` `void` Not Found
3957
+ */
3958
+ enableById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes>;
3959
+ /**
3960
+ * @description 所需权限:division:manage
3961
+ *
3962
+ * @tags division
3963
+ * @name Import
3964
+ * @summary 导入
3965
+ * @request POST:/sz-traffic-service/division/import
3966
+ * @response `200` `void` OK
3967
+ * @response `201` `void` Created
3968
+ * @response `401` `void` Unauthorized
3969
+ * @response `403` `void` Forbidden
3970
+ * @response `404` `void` Not Found
3971
+ */
3972
+ import: (data: ImportPayload, axiosConfig?: AxiosRequestConfig) => Promise<void>;
3973
+ /**
3974
+ * @description 所需权限:permission:create
3975
+ *
3976
+ * @tags division
3977
+ * @name InitPermission
3978
+ * @summary 初始化行政区划权限
3979
+ * @request GET:/sz-traffic-service/division/init-permission
3980
+ * @response `200` `void` OK
3981
+ * @response `401` `void` Unauthorized
3982
+ * @response `403` `void` Forbidden
3983
+ * @response `404` `void` Not Found
3984
+ */
3985
+ initPermission: (axiosConfig?: AxiosRequestConfig) => Promise<void>;
3986
+ /**
3987
+ * No description
3988
+ *
3989
+ * @tags division
3990
+ * @name List
3991
+ * @summary 列表查询
3992
+ * @request POST:/sz-traffic-service/division/list
3993
+ * @response `200` `(DivisionDTORes)[]` OK
3994
+ * @response `201` `void` Created
3995
+ * @response `401` `void` Unauthorized
3996
+ * @response `403` `void` Forbidden
3997
+ * @response `404` `void` Not Found
3998
+ */
3999
+ list: (data: DivisionQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes[]>;
4000
+ /**
4001
+ * @description 所需权限:division:manage
4002
+ *
4003
+ * @tags division
4004
+ * @name Page
4005
+ * @summary 分页查询
4006
+ * @request POST:/sz-traffic-service/division/page
4007
+ * @response `200` `PageResultDivisionDTO` OK
4008
+ * @response `201` `void` Created
4009
+ * @response `401` `void` Unauthorized
4010
+ * @response `403` `void` Forbidden
4011
+ * @response `404` `void` Not Found
4012
+ */
4013
+ page: (data: DivisionQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultDivisionDTO>;
4014
+ /**
4015
+ * No description
4016
+ *
4017
+ * @tags division
4018
+ * @name Township
4019
+ * @summary 街道列表
4020
+ * @request GET:/sz-traffic-service/division/township
4021
+ * @response `200` `(DivisionDTORes)[]` OK
4022
+ * @response `401` `void` Unauthorized
4023
+ * @response `403` `void` Forbidden
4024
+ * @response `404` `void` Not Found
4025
+ */
4026
+ township: (axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes[]>;
4027
+ /**
4028
+ * No description
4029
+ *
4030
+ * @tags division
4031
+ * @name TownshipByCode
4032
+ * @summary 区县街道列表
4033
+ * @request GET:/sz-traffic-service/division/township/{code}
4034
+ * @response `200` `(DivisionDTORes)[]` OK
4035
+ * @response `401` `void` Unauthorized
4036
+ * @response `403` `void` Forbidden
4037
+ * @response `404` `void` Not Found
4038
+ */
4039
+ townshipByCode: (code: string, axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes[]>;
2361
4040
  /**
2362
4041
  * No description
2363
4042
  *
2364
- * @tags dispatchTask
2365
- * @name Page
2366
- * @summary 分页查询
2367
- * @request POST:/sz-traffic-service/dispatch-task/page
2368
- * @response `200` `PageResultDispatchTaskDTO` OK
2369
- * @response `201` `void` Created
4043
+ * @tags division
4044
+ * @name TreeDepartmentByBmdm
4045
+ * @summary 根据某个部门代码获取树
4046
+ * @request GET:/sz-traffic-service/division/tree/department/{bmdm}
4047
+ * @response `200` `DivisionTree` OK
2370
4048
  * @response `401` `void` Unauthorized
2371
4049
  * @response `403` `void` Forbidden
2372
4050
  * @response `404` `void` Not Found
2373
4051
  */
2374
- page: (data: DispatchTaskQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultDispatchTaskDTO>;
4052
+ treeDepartmentByBmdm: (bmdm: string, axiosConfig?: AxiosRequestConfig) => Promise<DivisionTree>;
2375
4053
  /**
2376
4054
  * No description
2377
4055
  *
2378
- * @tags dispatchTask
2379
- * @name GetByXh
2380
- * @summary 按序号查询
2381
- * @request GET:/sz-traffic-service/dispatch-task/{xh}
2382
- * @response `200` `DispatchTaskDTO` OK
4056
+ * @tags division
4057
+ * @name TreeSelf
4058
+ * @summary 根据本人所属部门获取树
4059
+ * @request GET:/sz-traffic-service/division/tree/self
4060
+ * @response `200` `DivisionTree` OK
2383
4061
  * @response `401` `void` Unauthorized
2384
4062
  * @response `403` `void` Forbidden
2385
4063
  * @response `404` `void` Not Found
2386
4064
  */
2387
- getByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<DispatchTaskDTO>;
4065
+ treeSelf: (axiosConfig?: AxiosRequestConfig) => Promise<DivisionTree>;
2388
4066
  /**
2389
4067
  * No description
2390
4068
  *
2391
- * @tags dispatchTask
2392
- * @name DeleteByXh
2393
- * @summary 按序号删除
2394
- * @request DELETE:/sz-traffic-service/dispatch-task/{xh}
2395
- * @response `200` `void` OK
2396
- * @response `204` `void` No Content
4069
+ * @tags division
4070
+ * @name TreeByCode
4071
+ * @summary 根据某个行政区划代码获取树
4072
+ * @request GET:/sz-traffic-service/division/tree/{code}
4073
+ * @response `200` `DivisionTree` OK
2397
4074
  * @response `401` `void` Unauthorized
2398
4075
  * @response `403` `void` Forbidden
4076
+ * @response `404` `void` Not Found
2399
4077
  */
2400
- deleteByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4078
+ treeByCode: (code: string, axiosConfig?: AxiosRequestConfig) => Promise<DivisionTree>;
2401
4079
  /**
2402
4080
  * No description
2403
4081
  *
2404
- * @tags dispatchTask
2405
- * @name FeedbackByXh
2406
- * @summary 按序号查询反馈列表
2407
- * @request GET:/sz-traffic-service/dispatch-task/{xh}/feedback
2408
- * @response `200` `(DispatchTaskFeedbackDTO)[]` OK
4082
+ * @tags division
4083
+ * @name GetById
4084
+ * @summary 按照id查询
4085
+ * @request GET:/sz-traffic-service/division/{id}
4086
+ * @response `200` `DivisionDTORes` OK
2409
4087
  * @response `401` `void` Unauthorized
2410
4088
  * @response `403` `void` Forbidden
2411
4089
  * @response `404` `void` Not Found
2412
4090
  */
2413
- feedbackByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<DispatchTaskFeedbackDTO[]>;
4091
+ getById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<DivisionDTORes>;
2414
4092
  /**
2415
- * No description
4093
+ * @description 所需权限:division:manage
2416
4094
  *
2417
- * @tags dispatchTask
2418
- * @name PutRecoverByXh
2419
- * @summary 按序号恢复
2420
- * @request PUT:/sz-traffic-service/dispatch-task/{xh}/recover
4095
+ * @tags division
4096
+ * @name DeleteById
4097
+ * @summary 删除区划信息
4098
+ * @request DELETE:/sz-traffic-service/division/{id}
4099
+ * @response `200` `void` OK
4100
+ * @response `204` `void` No Content
4101
+ * @response `401` `void` Unauthorized
4102
+ * @response `403` `void` Forbidden
4103
+ */
4104
+ deleteById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4105
+ /**
4106
+ * @description 所需权限:division:manage
4107
+ *
4108
+ * @tags division
4109
+ * @name PutRecoverById
4110
+ * @summary 恢复区划信息
4111
+ * @request PUT:/sz-traffic-service/division/{id}/recover
2421
4112
  * @response `200` `void` OK
2422
4113
  * @response `201` `void` Created
2423
4114
  * @response `401` `void` Unauthorized
2424
4115
  * @response `403` `void` Forbidden
2425
4116
  * @response `404` `void` Not Found
2426
4117
  */
2427
- putRecoverByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4118
+ putRecoverById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2428
4119
  };
2429
4120
  ga: {
2430
4121
  /**
2431
- * No description
4122
+ * @description 所需权限:ga:community:manage
2432
4123
  *
2433
4124
  * @tags ga
2434
4125
  * @name Community
@@ -2442,7 +4133,21 @@ declare class Api {
2442
4133
  */
2443
4134
  community: (data: GaCommunityDTOReq, axiosConfig?: AxiosRequestConfig) => Promise<number>;
2444
4135
  /**
2445
- * No description
4136
+ * @description 所需权限:ga:community:manage
4137
+ *
4138
+ * @tags ga
4139
+ * @name CommunityBatch
4140
+ * @summary 批量导入
4141
+ * @request POST:/sz-traffic-service/ga/community/batch
4142
+ * @response `200` `void` OK
4143
+ * @response `201` `void` Created
4144
+ * @response `401` `void` Unauthorized
4145
+ * @response `403` `void` Forbidden
4146
+ * @response `404` `void` Not Found
4147
+ */
4148
+ communityBatch: (data: CommunityBatchPayload, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4149
+ /**
4150
+ * @description 所需权限:ga:community:manage
2446
4151
  *
2447
4152
  * @tags ga
2448
4153
  * @name CommunityDisableById
@@ -2455,7 +4160,7 @@ declare class Api {
2455
4160
  */
2456
4161
  communityDisableById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<GaCommunityDTORes>;
2457
4162
  /**
2458
- * No description
4163
+ * @description 所需权限:ga:community:manage
2459
4164
  *
2460
4165
  * @tags ga
2461
4166
  * @name CommunityEnableById
@@ -2468,7 +4173,20 @@ declare class Api {
2468
4173
  */
2469
4174
  communityEnableById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<GaCommunityDTORes>;
2470
4175
  /**
2471
- * No description
4176
+ * @description 所需权限:permission:create
4177
+ *
4178
+ * @tags ga
4179
+ * @name CommunityInitPermission
4180
+ * @summary 初始化隐患权限
4181
+ * @request GET:/sz-traffic-service/ga/community/init-permission
4182
+ * @response `200` `void` OK
4183
+ * @response `401` `void` Unauthorized
4184
+ * @response `403` `void` Forbidden
4185
+ * @response `404` `void` Not Found
4186
+ */
4187
+ communityInitPermission: (axiosConfig?: AxiosRequestConfig) => Promise<void>;
4188
+ /**
4189
+ * @description 所需权限:ga:community:find
2472
4190
  *
2473
4191
  * @tags ga
2474
4192
  * @name CommunityPage
@@ -2482,7 +4200,7 @@ declare class Api {
2482
4200
  */
2483
4201
  communityPage: (data: GaCommunityQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultGaCommunityDTO>;
2484
4202
  /**
2485
- * No description
4203
+ * @description 所需权限:ga:community:find
2486
4204
  *
2487
4205
  * @tags ga
2488
4206
  * @name GetCommunityById
@@ -2495,7 +4213,7 @@ declare class Api {
2495
4213
  */
2496
4214
  getCommunityById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<GaCommunityDTORes>;
2497
4215
  /**
2498
- * No description
4216
+ * @description 所需权限:ga:community:manage
2499
4217
  *
2500
4218
  * @tags ga
2501
4219
  * @name DeleteCommunityById
@@ -2508,7 +4226,7 @@ declare class Api {
2508
4226
  */
2509
4227
  deleteCommunityById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2510
4228
  /**
2511
- * No description
4229
+ * @description 所需权限:ga:community:manage
2512
4230
  *
2513
4231
  * @tags ga
2514
4232
  * @name PutCommunityRecoverById
@@ -2603,6 +4321,297 @@ declare class Api {
2603
4321
  */
2604
4322
  putCommunityInterviewRecoverByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
2605
4323
  };
4324
+ trafficLatentDanger: {
4325
+ /**
4326
+ * @description 所需权限:jz:latent:danger:find
4327
+ *
4328
+ * @tags trafficLatentDanger
4329
+ * @name Count
4330
+ * @summary 查询数量
4331
+ * @request POST:/sz-traffic-service/traffic-latent-danger/count
4332
+ * @response `200` `number` OK
4333
+ * @response `201` `void` Created
4334
+ * @response `401` `void` Unauthorized
4335
+ * @response `403` `void` Forbidden
4336
+ * @response `404` `void` Not Found
4337
+ */
4338
+ count: (data: LatentDangerQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<number>;
4339
+ /**
4340
+ * @description 所需权限:permission:create
4341
+ *
4342
+ * @tags trafficLatentDanger
4343
+ * @name InitPermission
4344
+ * @summary 初始化隐患权限
4345
+ * @request GET:/sz-traffic-service/traffic-latent-danger/init-permission
4346
+ * @response `200` `void` OK
4347
+ * @response `401` `void` Unauthorized
4348
+ * @response `403` `void` Forbidden
4349
+ * @response `404` `void` Not Found
4350
+ */
4351
+ initPermission: (axiosConfig?: AxiosRequestConfig) => Promise<void>;
4352
+ /**
4353
+ * @description 所需权限:jz:latent:danger:find
4354
+ *
4355
+ * @tags trafficLatentDanger
4356
+ * @name List
4357
+ * @summary 列表查询
4358
+ * @request POST:/sz-traffic-service/traffic-latent-danger/list
4359
+ * @response `200` `(LatentDangerDTO)[]` OK
4360
+ * @response `201` `void` Created
4361
+ * @response `401` `void` Unauthorized
4362
+ * @response `403` `void` Forbidden
4363
+ * @response `404` `void` Not Found
4364
+ */
4365
+ list: (data: LatentDangerQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<LatentDangerDTO[]>;
4366
+ /**
4367
+ * @description 所需权限:jz:latent:danger:find
4368
+ *
4369
+ * @tags trafficLatentDanger
4370
+ * @name Page
4371
+ * @summary 分页查询
4372
+ * @request POST:/sz-traffic-service/traffic-latent-danger/page
4373
+ * @response `200` `PageResultLatentDangerDTO` OK
4374
+ * @response `201` `void` Created
4375
+ * @response `401` `void` Unauthorized
4376
+ * @response `403` `void` Forbidden
4377
+ * @response `404` `void` Not Found
4378
+ */
4379
+ page: (data: LatentDangerQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultLatentDangerDTO>;
4380
+ /**
4381
+ * @description 所需权限:jz:latent:danger:find
4382
+ *
4383
+ * @tags trafficLatentDanger
4384
+ * @name GetByXh
4385
+ * @summary 按序号查询
4386
+ * @request GET:/sz-traffic-service/traffic-latent-danger/{xh}
4387
+ * @response `200` `LatentDangerDTO` OK
4388
+ * @response `401` `void` Unauthorized
4389
+ * @response `403` `void` Forbidden
4390
+ * @response `404` `void` Not Found
4391
+ */
4392
+ getByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<LatentDangerDTO>;
4393
+ /**
4394
+ * @description 所需权限:jz:latent:danger:delete
4395
+ *
4396
+ * @tags trafficLatentDanger
4397
+ * @name DeleteByXh
4398
+ * @summary 按序号删除
4399
+ * @request DELETE:/sz-traffic-service/traffic-latent-danger/{xh}
4400
+ * @response `200` `void` OK
4401
+ * @response `204` `void` No Content
4402
+ * @response `401` `void` Unauthorized
4403
+ * @response `403` `void` Forbidden
4404
+ */
4405
+ deleteByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4406
+ /**
4407
+ * @description 所需权限:jz:latent:danger:find
4408
+ *
4409
+ * @tags trafficLatentDanger
4410
+ * @name FeedbacksByXh
4411
+ * @summary 按隐患任务序号查询反馈列表
4412
+ * @request GET:/sz-traffic-service/traffic-latent-danger/{xh}/feedbacks
4413
+ * @response `200` `(LatentDangerFeedbackDTO)[]` OK
4414
+ * @response `401` `void` Unauthorized
4415
+ * @response `403` `void` Forbidden
4416
+ * @response `404` `void` Not Found
4417
+ */
4418
+ feedbacksByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<LatentDangerFeedbackDTO[]>;
4419
+ /**
4420
+ * @description 所需权限:jz:latent:danger:delete
4421
+ *
4422
+ * @tags trafficLatentDanger
4423
+ * @name PutRecoverByXh
4424
+ * @summary 按序号恢复
4425
+ * @request PUT:/sz-traffic-service/traffic-latent-danger/{xh}/recover
4426
+ * @response `200` `void` OK
4427
+ * @response `201` `void` Created
4428
+ * @response `401` `void` Unauthorized
4429
+ * @response `403` `void` Forbidden
4430
+ * @response `404` `void` Not Found
4431
+ */
4432
+ putRecoverByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4433
+ };
4434
+ mockInterview: {
4435
+ /**
4436
+ * No description
4437
+ *
4438
+ * @tags mockInterview
4439
+ * @name Page
4440
+ * @summary 分页查询
4441
+ * @request POST:/sz-traffic-service/mock-interview/page
4442
+ * @response `200` `PageResultMockInterviewDTO` OK
4443
+ * @response `201` `void` Created
4444
+ * @response `401` `void` Unauthorized
4445
+ * @response `403` `void` Forbidden
4446
+ * @response `404` `void` Not Found
4447
+ */
4448
+ page: (data: MockInterviewPageQuery, axiosConfig?: AxiosRequestConfig) => Promise<PageResultMockInterviewDTO>;
4449
+ /**
4450
+ * No description
4451
+ *
4452
+ * @tags mockInterview
4453
+ * @name FeedbacksByXh
4454
+ * @summary 按序号查询反馈列表
4455
+ * @request GET:/sz-traffic-service/mock-interview/{xh}/feedbacks
4456
+ * @response `200` `(MockInterviewFeedbackDTO)[]` OK
4457
+ * @response `401` `void` Unauthorized
4458
+ * @response `403` `void` Forbidden
4459
+ * @response `404` `void` Not Found
4460
+ */
4461
+ feedbacksByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<MockInterviewFeedbackDTO[]>;
4462
+ };
4463
+ trafficRoadworks: {
4464
+ /**
4465
+ * @description 所需权限:jz:roadworks:find
4466
+ *
4467
+ * @tags trafficRoadworks
4468
+ * @name Count
4469
+ * @summary 查询数量
4470
+ * @request POST:/sz-traffic-service/traffic-roadworks/count
4471
+ * @response `200` `number` OK
4472
+ * @response `201` `void` Created
4473
+ * @response `401` `void` Unauthorized
4474
+ * @response `403` `void` Forbidden
4475
+ * @response `404` `void` Not Found
4476
+ */
4477
+ count: (data: RoadworksQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<number>;
4478
+ /**
4479
+ * @description 所需权限:permission:create
4480
+ *
4481
+ * @tags trafficRoadworks
4482
+ * @name InitPermission
4483
+ * @summary 初始化道路施工权限
4484
+ * @request GET:/sz-traffic-service/traffic-roadworks/init-permission
4485
+ * @response `200` `void` OK
4486
+ * @response `401` `void` Unauthorized
4487
+ * @response `403` `void` Forbidden
4488
+ * @response `404` `void` Not Found
4489
+ */
4490
+ initPermission: (axiosConfig?: AxiosRequestConfig) => Promise<void>;
4491
+ /**
4492
+ * @description 所需权限:jz:roadworks:find
4493
+ *
4494
+ * @tags trafficRoadworks
4495
+ * @name List
4496
+ * @summary 列表查询
4497
+ * @request POST:/sz-traffic-service/traffic-roadworks/list
4498
+ * @response `200` `(RoadworksDTO)[]` OK
4499
+ * @response `201` `void` Created
4500
+ * @response `401` `void` Unauthorized
4501
+ * @response `403` `void` Forbidden
4502
+ * @response `404` `void` Not Found
4503
+ */
4504
+ list: (data: RoadworksQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<RoadworksDTO[]>;
4505
+ /**
4506
+ * @description 所需权限:jz:roadworks:find
4507
+ *
4508
+ * @tags trafficRoadworks
4509
+ * @name Page
4510
+ * @summary 分页查询
4511
+ * @request POST:/sz-traffic-service/traffic-roadworks/page
4512
+ * @response `200` `PageResultRoadworksDTO` OK
4513
+ * @response `201` `void` Created
4514
+ * @response `401` `void` Unauthorized
4515
+ * @response `403` `void` Forbidden
4516
+ * @response `404` `void` Not Found
4517
+ */
4518
+ page: (data: RoadworksQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultRoadworksDTO>;
4519
+ /**
4520
+ * No description
4521
+ *
4522
+ * @tags trafficRoadworks
4523
+ * @name Report
4524
+ * @summary 施工申请上报
4525
+ * @request POST:/sz-traffic-service/traffic-roadworks/report
4526
+ * @response `200` `(RoadworksPositionResult)[]` OK
4527
+ * @response `201` `void` Created
4528
+ * @response `401` `void` Unauthorized
4529
+ * @response `403` `void` Forbidden
4530
+ * @response `404` `void` Not Found
4531
+ */
4532
+ report: (data: RoadworksReportRequest, axiosConfig?: AxiosRequestConfig) => Promise<RoadworksPositionResult[]>;
4533
+ /**
4534
+ * No description
4535
+ *
4536
+ * @tags trafficRoadworks
4537
+ * @name SelfPage
4538
+ * @summary 本人提交记录
4539
+ * @request POST:/sz-traffic-service/traffic-roadworks/self/page
4540
+ * @response `200` `PageResultRoadworksDTO` OK
4541
+ * @response `201` `void` Created
4542
+ * @response `401` `void` Unauthorized
4543
+ * @response `403` `void` Forbidden
4544
+ * @response `404` `void` Not Found
4545
+ */
4546
+ selfPage: (data: SelfRoadworksQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<PageResultRoadworksDTO>;
4547
+ /**
4548
+ * No description
4549
+ *
4550
+ * @tags trafficRoadworks
4551
+ * @name SelfRecent
4552
+ * @summary 本人近期一条的提交记录
4553
+ * @request POST:/sz-traffic-service/traffic-roadworks/self/recent
4554
+ * @response `200` `RoadworksDTO` OK
4555
+ * @response `201` `void` Created
4556
+ * @response `401` `void` Unauthorized
4557
+ * @response `403` `void` Forbidden
4558
+ * @response `404` `void` Not Found
4559
+ */
4560
+ selfRecent: (axiosConfig?: AxiosRequestConfig) => Promise<RoadworksDTO>;
4561
+ /**
4562
+ * No description
4563
+ *
4564
+ * @tags trafficRoadworks
4565
+ * @name GetByXh
4566
+ * @summary 按序号查询
4567
+ * @request GET:/sz-traffic-service/traffic-roadworks/{xh}
4568
+ * @response `200` `RoadworksDTO` OK
4569
+ * @response `401` `void` Unauthorized
4570
+ * @response `403` `void` Forbidden
4571
+ * @response `404` `void` Not Found
4572
+ */
4573
+ getByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<RoadworksDTO>;
4574
+ /**
4575
+ * @description 所需权限:jz:roadworks:delete
4576
+ *
4577
+ * @tags trafficRoadworks
4578
+ * @name DeleteByXh
4579
+ * @summary 按序号删除
4580
+ * @request DELETE:/sz-traffic-service/traffic-roadworks/{xh}
4581
+ * @response `200` `void` OK
4582
+ * @response `204` `void` No Content
4583
+ * @response `401` `void` Unauthorized
4584
+ * @response `403` `void` Forbidden
4585
+ */
4586
+ deleteByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4587
+ /**
4588
+ * No description
4589
+ *
4590
+ * @tags trafficRoadworks
4591
+ * @name ProgressesByXh
4592
+ * @summary 按道路施工任务序号查询反馈列表
4593
+ * @request GET:/sz-traffic-service/traffic-roadworks/{xh}/progresses
4594
+ * @response `200` `(RoadworksProgressDTO)[]` OK
4595
+ * @response `401` `void` Unauthorized
4596
+ * @response `403` `void` Forbidden
4597
+ * @response `404` `void` Not Found
4598
+ */
4599
+ progressesByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<RoadworksProgressDTO[]>;
4600
+ /**
4601
+ * @description 所需权限:jz:roadworks:delete
4602
+ *
4603
+ * @tags trafficRoadworks
4604
+ * @name PutRecoverByXh
4605
+ * @summary 按序号恢复
4606
+ * @request PUT:/sz-traffic-service/traffic-roadworks/{xh}/recover
4607
+ * @response `200` `void` OK
4608
+ * @response `201` `void` Created
4609
+ * @response `401` `void` Unauthorized
4610
+ * @response `403` `void` Forbidden
4611
+ * @response `404` `void` Not Found
4612
+ */
4613
+ putRecoverByXh: (xh: string, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4614
+ };
2606
4615
  supervision: {
2607
4616
  /**
2608
4617
  * No description