Commit 2de70788 authored by neo's avatar neo

[bug] fix report imp for count bool

parent bb5bcd04
......@@ -498,7 +498,7 @@ public class ReportServiceImpl extends VatAbstractService implements ReportServi
public OperationResultDto<List<VatEnterpriseAccount>> getStdAccountByIndustry(String industryID) {
OperationResultDto resultDto = new OperationResultDto();
VatEnterpriseAccountExample example = new VatEnterpriseAccountExample();
example.createCriteria().andIsActiveEqualTo((short) 1);
example.createCriteria().andIsActiveEqualTo(true);
vatEnterpriseAccountMapper.selectByExample(example);
List<VatEnterpriseAccount> vatEnterpriseAccounts = vatEnterpriseAccountMapper.selectByExample(example);
if (vatEnterpriseAccounts == null) {
......
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