fix(用户管理): 修复用户查询时名字中间隔号被 HTML 实体转义的问题

将查询参数中的 · 转义回 · 后再执行查询

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
wanghao
2026-03-30 14:54:56 +08:00
co-authored by Claude Sonnet 4.6
parent 8f00d07377
commit 63cc815022
@@ -192,6 +192,8 @@ public class HealthUserEmployeeExServiceImpl extends ServiceImpl<HealthUserEmplo
}
List<String> orgCodes = GlobalUtils.getManagedCodes(filter.getOrgCode());
filter.setOrgCodes(orgCodes);
// 20260330 &middot; 名字中包含·需要转义回·
filter.setRealname(filter.getRealname().replaceAll("&middot;", "·"));
IPage<UserEmployee> userEmployeeIPage = healthUserEmployeeExMapper.queryUserEmployeeList(page, filter);
if (CollectionUtils.isEmpty(userEmployeeIPage.getRecords())) {
return userEmployeeIPage;