feat(corp): 为可视化大屏新增企业列表接口

dev_visual_page
zhaokai 2026-07-21 08:54:53 +08:00
parent d868f64395
commit 35c9818f2c
1 changed files with 6 additions and 0 deletions

View File

@ -169,5 +169,11 @@ public class CorpInfoController {
return SingleResponse.of(corpInfoService.corpUserSummary(qry)); return SingleResponse.of(corpInfoService.corpUserSummary(qry));
} }
@ApiOperation("可视化大屏-企业列表")
@PostMapping("/corpListAll")
public MultiResponse<CorpInfoCO> corpListAll(@RequestBody CorpInfoQry corpInfoQry) {
return corpInfoService.listAll(corpInfoQry);
}
} }