|
|
@ -510,7 +510,7 @@ public class LoanFinPolicyService extends MybatisBaseService<LoanFinPolicyMapper |
|
|
|
} |
|
|
|
//车辆功能
|
|
|
|
if (StringUtils.isNotBlank(query.getVehTypeKey())) { |
|
|
|
qw.eq("lfp.vehTypeKey", query.getVehTypeKey()); |
|
|
|
qw.like("lfp.vehTypeKey", query.getVehTypeKey()); |
|
|
|
} |
|
|
|
//适用销售部门
|
|
|
|
if (StringUtils.isNotBlank(query.getUseDeptNames())) { |
|
|
@ -529,6 +529,10 @@ public class LoanFinPolicyService extends MybatisBaseService<LoanFinPolicyMapper |
|
|
|
if (StringUtils.isNotBlank(query.getPeriod())) { |
|
|
|
qw.like("lfp.period", query.getPeriod()); |
|
|
|
} |
|
|
|
//服务费类型
|
|
|
|
if (StringUtils.isNotBlank(query.getServiceAmountTypeKey())) { |
|
|
|
qw.eq("lfp.serviceAmountTypeKey", query.getServiceAmountTypeKey()); |
|
|
|
} |
|
|
|
//最低首付比例 至
|
|
|
|
if (StringUtils.isNotBlank(query.getDownPayRatioLeastStart()) && StringUtils.isNotBlank(query.getDownPayRatioLeastEnd())) { |
|
|
|
qw.between("lfp.downPayRatioLeast", query.getDownPayRatioLeastStart(), query.getDownPayRatioLeastEnd()); |
|
|
|