Commit 4265cdd2 authored by jiaorz's avatar jiaorz

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

parents 6e9ec52f 170f89c9
......@@ -215,7 +215,9 @@ public class BranchCompanyBiz extends BaseBiz<BranchCompanyMapper, BranchCompany
@Cache(key = RedisKey.BRANCH_COMPANY_CACHE_ALL)
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