Commit a10fa2f6 authored by eddie.woo's avatar eddie.woo

fix

parent 2e0c2afd
...@@ -106,7 +106,7 @@ public class StdAccountServiceImpl extends BaseService implements StdAccountServ ...@@ -106,7 +106,7 @@ public class StdAccountServiceImpl extends BaseService implements StdAccountServ
StandardAccountExample example = new StandardAccountExample(); StandardAccountExample example = new StandardAccountExample();
example.createCriteria().andRuleTypeEqualTo((int)StandAccountConstant.TWO).andIsActiveEqualTo(ActiveStatus.Active).andIndustryIDEqualTo(industryID); example.createCriteria().andRuleTypeEqualTo((int)StandAccountConstant.TWO).andIsActiveEqualTo(ActiveStatus.Active).andIndustryIDEqualTo(industryID);
example.setOrderByClause("order by code"); example.setOrderByClause("Code");
List<StandardAccount> items = standardAccountMapper.selectByExample(example); List<StandardAccount> items = standardAccountMapper.selectByExample(example);
List<StandardAccountDto> dtos = new ArrayList<>(); List<StandardAccountDto> dtos = new ArrayList<>();
......
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