在线巡查bug修复,数据同步增加线程池
This commit is contained in:
parent
c0e05a5194
commit
bc33e9d92a
|
|
@ -208,6 +208,8 @@ function handleExport() {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
:deep(.el-table) {
|
||||
.can-click {
|
||||
cursor: pointer;
|
||||
|
|
|
|||
|
|
@ -237,6 +237,7 @@ public class EnforceCheckController {
|
|||
enforceCheck.setEnforceCheckId(enforceCheckId);
|
||||
return Ok.of(enforceCheckService.updateSupplementVerify(enforceCheck, user));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改检查项id
|
||||
*
|
||||
|
|
|
|||
|
|
@ -40,7 +40,15 @@ public class LawEnfPenaltyStatController {
|
|||
return Ok.of(lawEnfPenaltyStatService.getLawEnfPenaltyStat(lawEnfPenaltyStatQuery,user));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 非现场执法查看巡查次数详情
|
||||
*
|
||||
* @return 非现场执法查看巡查次数详情
|
||||
*/
|
||||
@GetMapping("/getPagexccsDetail")
|
||||
public PageResult<OnlinePatrol> getPagexccsDetail(LawEnfPenaltyStatQuery query, @CurrentUser RemoteUserInfo user) {
|
||||
return PageResult.of(lawEnfPenaltyStatService.getPagexccsDetail(query,user));
|
||||
}
|
||||
/**
|
||||
* 非现场执法查看发现问题次数详情
|
||||
*
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ public class OnlinePatrolController {
|
|||
public OnlinePatrolController(OnlinePatrolService onlinePatrolService) {
|
||||
this.onlinePatrolService = onlinePatrolService;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建报送审批
|
||||
*
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@ public class CheckItem extends BaseModel {
|
|||
|
||||
/**
|
||||
* 检查项ID
|
||||
*
|
||||
*/
|
||||
@Id
|
||||
@GeneratedValue(generator = Constants.Genernators.gen_ulid)
|
||||
|
|
|
|||
|
|
@ -132,6 +132,7 @@ public class EnforcementInfo extends BaseModel {
|
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
|
||||
@Comment("更新时间(精确到秒)")
|
||||
@Column(name = "update_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
|
|
|
|||
Loading…
Reference in New Issue