diff --git a/jeecg-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/service/impl/HealthUserEmployeeExServiceImpl.java b/jeecg-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/service/impl/HealthUserEmployeeExServiceImpl.java index d598577..7230dee 100644 --- a/jeecg-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/service/impl/HealthUserEmployeeExServiceImpl.java +++ b/jeecg-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/service/impl/HealthUserEmployeeExServiceImpl.java @@ -4,6 +4,7 @@ import cn.hutool.core.collection.CollUtil; import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.date.DateUtil; import cn.hutool.core.util.*; +import cn.hutool.http.HtmlUtil; import com.alibaba.csp.sentinel.util.StringUtil; import com.alibaba.fastjson.JSON; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; @@ -778,6 +779,9 @@ public class HealthUserEmployeeExServiceImpl extends ServiceImpl selectUserListByWatch(Page page, UserFilter filter) { + if(StrUtil.isNotBlank(filter.getRealname())){ + filter.setRealname(HtmlUtil.unescape(filter.getRealname())); + } List bindUserIdList = watchApi.getBindUserIdList(); if (!CollectionUtils.isEmpty(bindUserIdList)) { filter.setIdList(bindUserIdList);