|
|
@@ -145,7 +145,8 @@ public class BCorpsController extends BladeController {
|
|
|
.like(ObjectUtils.isNotNull(bCorps.getCntyName()), BCorps::getCntyName, bCorps.getCntyName())
|
|
|
.like(ObjectUtils.isNotNull(bCorps.getCorpSource()), BCorps::getCorpSource, bCorps.getCorpSource())
|
|
|
.like(ObjectUtils.isNotNull(bCorps.getTel()), BCorps::getTel, bCorps.getTel())
|
|
|
- .like(ObjectUtils.isNotNull(bCorps.getAdminProfiles()), BCorps::getAdminProfiles, bCorps.getAdminProfiles());
|
|
|
+ .like(ObjectUtils.isNotNull(bCorps.getAdminProfiles()), BCorps::getAdminProfiles, bCorps.getAdminProfiles())
|
|
|
+ .like(ObjectUtils.isNotEmpty(bCorps.getBranchName()),BCorps::getBranchName,bCorps.getBranchName());
|
|
|
lambdaQueryWrapper.apply(ObjectUtils.isNotNull(bCorps.getCorpType()), "find_in_set('" + bCorps.getCorpType() + "',corp_type)");
|
|
|
String status = sysClient.getParamService("basic.data.sort");
|
|
|
if ("name".equals(status)) {
|