This commit is contained in:
shuo.wang
2025-05-12 20:26:11 +08:00
parent 9dfd7c5fca
commit 9d792bf8b4

View File

@@ -287,7 +287,7 @@ public class ShopInfoDAO {
public List<ShopInfoDO> selectByShopCodeList(List<String> shopCodeList){ public List<ShopInfoDO> selectByShopCodeList(List<String> shopCodeList){
Example example = new Example(ShopInfoDO.class); Example example = new Example(ShopInfoDO.class);
example.createCriteria().andIn("shopCode", shopCodeList); example.createCriteria().andIn("shopCode", shopCodeList).andEqualTo("deleted", false);
return shopInfoMapper.selectByExample(example); return shopInfoMapper.selectByExample(example);
} }
} }