双随机清单、重点企业清单接口

This commit is contained in:
luolianxin 2025-06-13 17:38:53 +08:00
parent bcd4f41104
commit e1f5ee0228
3 changed files with 2 additions and 3 deletions

View File

@ -51,7 +51,7 @@ public class AutoEnforcementPlanController {
return autoEnforcementPlanService.findAutoEnforcementPlanById(planId)
.map(e -> ((Result<AutoEnforcementPlan>) Ok.of(e)))
.orElse(Fail.of("自动执法计划不存在"));
}
/**
* 分页查询自动执法计划

View File

@ -32,8 +32,6 @@ public class AutoEnforcementPlan extends BaseModel {
@GeneratedValue(generator = Constants.Genernators.gen_ulid)
@Comment("唯一IDULID")
private String planId;
/**
* 任务名称
*/

View File

@ -40,6 +40,7 @@ public class AutoEnforcementPlanService {
this.enterpriseRepo = enterpriseRepo;
this.enforcementInfoService = enforcementInfoService;
}
/**
* 保存自动执法计划
*