Commit fa567d79 by zhangzhendong

为空判断

parent 571d04b8
......@@ -184,7 +184,7 @@ public class NoticeMessageApiServiceImpl implements NoticeMessageApiService {
try {
Map<String, String> variableMap = messageQDTO.getContentMap();
Map<String, String> variableMap = ObjectUtil.isNotNull(messageQDTO.getContentMap()) ? messageQDTO.getContentMap() : new HashMap<>();
if (ObjectUtil.isNotEmpty(messageQDTO.getExtendContent())) {
variableMap.put("pageParams", JSONObject.toJSONString(messageQDTO.getExtendContent()));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment