|
@@ -97,10 +97,10 @@ public interface MdeUserMapper extends BaseMapperX<MdeUserDO> {
|
|
|
;
|
|
|
|
|
|
if(StringUtils.isNotBlank(reqVO.getBrand())){
|
|
|
- query.innerJoin(WorkExpDO.class, WorkExpDO::getUserId, PersonInfoDO::getUserId);
|
|
|
- query.like(WorkExpDO::getEnterpriseName, reqVO.getBrand());
|
|
|
+ query.innerJoin(WorkExpDO.class, on-> on.eq(WorkExpDO::getUserId, PersonInfoDO::getUserId).apply("MATCH(enterprise_Name) AGAINST('"+ reqVO.getBrand()+"*' IN BOOLEAN MODE)"));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
// query.and(StringUtils.isNotBlank(reqVO.getBrand()),
|
|
|
// qw->qw.
|
|
|
// apply("t.user_id in ( " +
|