企业信息推送

This commit is contained in:
mythxb 2025-04-01 15:47:23 +08:00
parent 874df064b1
commit 31ce87418d

View File

@ -770,7 +770,11 @@ public class DataController extends com.rzyc.controller.BaseController {
@ResponseBody @ResponseBody
public SingleResult<String>entInfoSend(String entId)throws Exception{ public SingleResult<String>entInfoSend(String entId)throws Exception{
SingleResult<String> result = new SingleResult<>(); SingleResult<String> result = new SingleResult<>();
provinceService.entInfoSend(entId); List<SysEnterprise> enterprises = sysEnterpriseMapper.findAll();
for (SysEnterprise enterprise : enterprises){
provinceService.entInfoSend(enterprise.getSysenterpriseid());
}
return result; return result;
} }