列表模糊查询

This commit is contained in:
wkc
2026-01-22 14:02:08 +08:00
parent 5fc10468cf
commit 3b6220cd53

View File

@@ -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;