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

@@ -77,6 +77,8 @@
create_user_id as createUserId, create_user_id as createUserId,
create_time as createTime, create_time as createTime,
handle_person_info as handlePersonInfo, handle_person_info as handlePersonInfo,
jump_type as jumpType,
jump_url as jumpUrl,
store_info as storeInfo store_info as storeInfo
FROM zxjp_message_template FROM zxjp_message_template
WHERE deleted = 0 WHERE deleted = 0

View File

@@ -79,4 +79,8 @@ public class NoticeDTO {
private String storeInfo; private String storeInfo;
private Integer jumpType;
private String jumpUrl;
} }

View File

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