diff --git a/emis-biz/src/main/resources/mapper/EmisCreditCustomerMapper.xml b/emis-biz/src/main/resources/mapper/EmisCreditCustomerMapper.xml index 8ceed860c..9bfb02ecb 100644 --- a/emis-biz/src/main/resources/mapper/EmisCreditCustomerMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisCreditCustomerMapper.xml @@ -68,10 +68,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - and (a.cur_money/a.credit_money) = ]]> #{params.beginCurMoneyRate} + and (a.cur_money/a.credit_money)*100 = ]]> #{params.beginCurMoneyRate} - and (a.cur_money/a.credit_money) #{params.endCurMoneyRate} + and (a.cur_money/a.credit_money)*100 #{params.endCurMoneyRate} diff --git a/emis-biz/src/main/resources/mapper/EmisCreditSalesmenMapper.xml b/emis-biz/src/main/resources/mapper/EmisCreditSalesmenMapper.xml index 990119ead..acf0ebe8d 100644 --- a/emis-biz/src/main/resources/mapper/EmisCreditSalesmenMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisCreditSalesmenMapper.xml @@ -57,10 +57,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - and (a.cur_money/a.credit_money) = ]]> #{params.beginCurMoneyRate} + and (a.cur_money/a.credit_money)*100 = ]]> #{params.beginCurMoneyRate} - and (a.cur_money/a.credit_money) #{params.endCurMoneyRate} + and (a.cur_money/a.credit_money)*100 #{params.endCurMoneyRate}