|
@@ -270,6 +270,22 @@ public class RemoteBaseService {
|
|
|
return new ArrayList<>();
|
|
return new ArrayList<>();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @param code 专场编号
|
|
|
|
|
+ * @desc 专场编号查询关联企业ID
|
|
|
|
|
+ * @author zk
|
|
|
|
|
+ * @date 2023/12/16
|
|
|
|
|
+ **/
|
|
|
|
|
+ public List<Long> findEntIdsByCode(String code) {
|
|
|
|
|
+ return kwsSpecialService.findEntIdsByCode(code);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @param entIds 企业id查询数据库企业信息
|
|
|
|
|
+ * @desc 企业主键id查询数据库企业信息
|
|
|
|
|
+ * @author zk
|
|
|
|
|
+ * @date 2023/12/16
|
|
|
|
|
+ **/
|
|
|
public Map<Long, KwsEnterpriseResDto> queryEnterpriseByEntIds(List<Long> entIds) {
|
|
public Map<Long, KwsEnterpriseResDto> queryEnterpriseByEntIds(List<Long> entIds) {
|
|
|
List<KwsEnterprise> enterpriseList = kwsEnterpriseDao.queryEnterpriseByEntIds(entIds);
|
|
List<KwsEnterprise> enterpriseList = kwsEnterpriseDao.queryEnterpriseByEntIds(entIds);
|
|
|
List<KwsEnterpriseResDto> dtoList = new ArrayList<>();
|
|
List<KwsEnterpriseResDto> dtoList = new ArrayList<>();
|