Merge branch 'cc_20250509_import_data' into 'master'

fix

See merge request hangzhou/java/custom_zxjp!76
This commit is contained in:
苏竹红
2025-05-12 12:27:59 +00:00

View File

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