Commit 24355604 authored by jiaorz's avatar jiaorz

Merge branch 'master-count-vehicle' into base-modify

parents c355268f 2c984854
...@@ -216,7 +216,7 @@ public class BranchCompanyBiz extends BaseBiz<BranchCompanyMapper, BranchCompany ...@@ -216,7 +216,7 @@ 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() {
Example example = new Example(BranchCompany.class); Example example = new Example(BranchCompany.class);
example.createCriteria().andEqualTo("is_del", 0); example.createCriteria().andEqualTo("isDel", 0);
return mapper.selectByExample(example); 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