|
@@ -309,7 +309,7 @@ public class KwsSpecialService {
|
|
|
return HttpResult.error("专场信息不存在!");
|
|
return HttpResult.error("专场信息不存在!");
|
|
|
}
|
|
}
|
|
|
List<KwsEntSpecial> entSpecials = kwsEntSpecialDao.findList(new HashMap<>(){{put("entId", entId); put("specialId", specialId);}});
|
|
List<KwsEntSpecial> entSpecials = kwsEntSpecialDao.findList(new HashMap<>(){{put("entId", entId); put("specialId", specialId);}});
|
|
|
- if (CollectionUtils.isNotEmpty(entSpecials)) {
|
|
|
|
|
|
|
+ if (CollectionUtils.isEmpty(entSpecials)) {
|
|
|
return HttpResult.error("专场企业信息不存在!");
|
|
return HttpResult.error("专场企业信息不存在!");
|
|
|
} else {
|
|
} else {
|
|
|
entSpecials.forEach(e -> {
|
|
entSpecials.forEach(e -> {
|