督导检查统计,企业分类信息优化

This commit is contained in:
luolianxin 2025-08-22 19:54:21 +08:00
parent edd01ecb1e
commit c2627f16ba
2 changed files with 9 additions and 2 deletions

View File

@ -111,7 +111,9 @@
<div class="label">监测预警总数</div>
<div class="num">{{ sumNum }}<span></span></div>
</div>
<div class="right">
<div ref="chart1" style="height: 100%; width: 100%;"></div>
</div>
</div>
</div>

View File

@ -184,7 +184,12 @@ public class BigScreenController {
return Ok.of(bigScreenService.findEnterprisesByBusinessRating(businessRating));
}
/**
* 根据企业id查询企业执法信息
*
* @param enterpriseId 企业id
* @return 企业列表
*/
@GetMapping("/qyxx/zfxx")
public Result<List<EnforcementInfo>> getEnforcementInfoByEnterpriseId(String enterpriseId) {
return Ok.of(bigScreenService.findEnforcementInfoByEnterpriseId(enterpriseId));