修复第三方测试发现的问题

This commit is contained in:
luolianxin 2025-07-04 17:22:20 +08:00
parent dfcf437c79
commit 697144c47c
4 changed files with 18 additions and 0 deletions

View File

@ -162,6 +162,12 @@ public class BigScreenController {
return Ok.of(bigScreenService.getFxczftj(type));
}
/**
* 监督检查计划统计
*
* @param
* @return 监督检查计划统计
*/
@GetMapping("/jdjcjhtj")
public Result<List> getJdjcjhtj() {
return Ok.of(bigScreenService.getJdjcjhtj());

View File

@ -48,6 +48,11 @@ public class OffSiteLawEnforceController {
* @param
* @return 企业类型接入统计
*/
@GetMapping("/qyjrlxtj")
public Result<Map> getQyjrlxtj() {
return Ok.of(offSiteLawEnforceService.getQyjrlxtj());
}
/**
* 非现场执法总数统计

View File

@ -21,6 +21,9 @@ public class OnlinePatrolController {
private final OnlinePatrolService onlinePatrolService;
public OnlinePatrolController(OnlinePatrolService onlinePatrolService) {
this.onlinePatrolService = onlinePatrolService;
}
/**
* 创建报送审批

View File

@ -123,6 +123,10 @@ public class EnforcementInfo extends BaseModel {
@Column(name = "current_node", length = 20, nullable = false)
private String currentNode;
@Comment("数据来源1.系统新增 2.部级系统 3.举报核查转交 4.自动执法计划 5.上级转交 6.同级移交 7.非现场执法 ")
@Column(name = "data_from", length = 2, nullable = false)
private String dataFrom;
@Comment("录入时间(精确到秒)")
@Column(name = "create_time")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")