大屏、定制随机检查功能完善,修改bug
This commit is contained in:
parent
dc6b722295
commit
d92732b319
|
|
@ -162,12 +162,6 @@ public class BigScreenController {
|
|||
return Ok.of(bigScreenService.getFxczftj(type));
|
||||
}
|
||||
|
||||
/**
|
||||
* 监督检查计划统计
|
||||
*
|
||||
* @param
|
||||
* @return 监督检查计划统计
|
||||
*/
|
||||
@GetMapping("/jdjcjhtj")
|
||||
public Result<List> getJdjcjhtj() {
|
||||
return Ok.of(bigScreenService.getJdjcjhtj());
|
||||
|
|
|
|||
|
|
@ -25,7 +25,11 @@ public class OffSiteLawEnforceController {
|
|||
private final OffSiteLawEnforceService offSiteLawEnforceService;
|
||||
private final EnterpriseWarnService enterpriseWarnService;
|
||||
|
||||
|
||||
public OffSiteLawEnforceController(OffSiteLawEnforceService offSiteLawEnforceService,
|
||||
EnterpriseWarnService enterpriseWarnService) {
|
||||
this.offSiteLawEnforceService = offSiteLawEnforceService;
|
||||
this.enterpriseWarnService = enterpriseWarnService;
|
||||
}
|
||||
|
||||
/**
|
||||
* 企业接入统计
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@ public class OnlinePatrolController {
|
|||
|
||||
private final OnlinePatrolService onlinePatrolService;
|
||||
|
||||
public OnlinePatrolController(OnlinePatrolService onlinePatrolService) {
|
||||
this.onlinePatrolService = onlinePatrolService;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建报送审批
|
||||
*
|
||||
|
|
|
|||
|
|
@ -127,6 +127,11 @@ public class EnforcementInfo extends BaseModel {
|
|||
@Column(name = "data_from", length = 2, nullable = false)
|
||||
private String dataFrom;
|
||||
|
||||
@Comment("录入时间(精确到秒)")
|
||||
@Column(name = "create_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
|
||||
@Comment("更新时间(精确到秒)")
|
||||
@Column(name = "update_time")
|
||||
|
|
|
|||
Loading…
Reference in New Issue