fix
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user