fix batchUpdateByShopIdsAndSubStageStatus

This commit is contained in:
shuo.wang
2025-01-15 18:50:11 +08:00
parent 8c09ed83ae
commit bdeeeda862

View File

@@ -187,7 +187,7 @@ public class ShopStageInfoDAO {
* @return * @return
*/ */
public Integer batchUpdateByShopIdsAndSubStageStatus(List<Long> shopIds, List<ShopSubStageStatusEnum> subStageStatusList) { public Integer batchUpdateByShopIdsAndSubStageStatus(List<Long> shopIds, List<ShopSubStageStatusEnum> subStageStatusList) {
if (Objects.isNull(shopIds) || CollectionUtils.isEmpty(subStageStatusList)) { if (CollectionUtils.isEmpty(shopIds) || CollectionUtils.isEmpty(subStageStatusList)) {
return CommonConstants.ZERO; return CommonConstants.ZERO;
} }
List<ShopStageInfoDO> shopStageList = Lists.newArrayList(); List<ShopStageInfoDO> shopStageList = Lists.newArrayList();