Merge branch 'refs/heads/cc_20250826_notice' into cc_20250903_big_screen

This commit is contained in:
wangff
2025-09-08 10:46:14 +08:00
3 changed files with 7 additions and 1 deletions

View File

@@ -247,7 +247,7 @@ public class MessageTemplateServiceImpl implements MessageTemplateService {
//组装人员信息
List<CommonDTO> userList = new ArrayList<>();
userInfoByUserMobileList.forEach(x -> {
CommonDTO user = new CommonDTO("user", x.getUserId(), x.getName());
CommonDTO user = new CommonDTO("person", x.getUserId(), x.getName());
userList.add(user);
});
userInfo = JSONObject.toJSONString(userList);