列表模糊查询
This commit is contained in:
@@ -150,7 +150,7 @@ public class LoanPricingWorkflowServiceImpl implements ILoanPricingWorkflowServi
|
||||
// 按创建者筛选
|
||||
if (StringUtils.hasText(loanPricingWorkflow.getCreateBy()))
|
||||
{
|
||||
wrapper.eq(LoanPricingWorkflow::getCreateBy, loanPricingWorkflow.getCreateBy());
|
||||
wrapper.like(LoanPricingWorkflow::getCreateBy, loanPricingWorkflow.getCreateBy());
|
||||
}
|
||||
|
||||
// 按客户名称模糊查询
|
||||
@@ -162,7 +162,7 @@ public class LoanPricingWorkflowServiceImpl implements ILoanPricingWorkflowServi
|
||||
// 按机构号筛选
|
||||
if (StringUtils.hasText(loanPricingWorkflow.getOrgCode()))
|
||||
{
|
||||
wrapper.eq(LoanPricingWorkflow::getOrgCode, loanPricingWorkflow.getOrgCode());
|
||||
wrapper.like(LoanPricingWorkflow::getOrgCode, loanPricingWorkflow.getOrgCode());
|
||||
}
|
||||
|
||||
return wrapper;
|
||||
|
||||
Reference in New Issue
Block a user