Commit 170f89c9 authored by jiaorz's avatar jiaorz

后台功能优化,车辆新加托管人筛选字段

parent 4e9e0e45
...@@ -215,7 +215,9 @@ public class BranchCompanyBiz extends BaseBiz<BranchCompanyMapper, BranchCompany ...@@ -215,7 +215,9 @@ public class BranchCompanyBiz extends BaseBiz<BranchCompanyMapper, BranchCompany
@Cache(key = RedisKey.BRANCH_COMPANY_CACHE_ALL) @Cache(key = RedisKey.BRANCH_COMPANY_CACHE_ALL)
public List<BranchCompany> getAll() { public List<BranchCompany> getAll() {
return mapper.selectAll(); Example example = new Example(BranchCompany.class);
example.createCriteria().andEqualTo("is_del", 0);
return mapper.selectByExample(example);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment