Commit fb18512c by 王祖波

预览数据不处理

parent d461f713
......@@ -43,6 +43,11 @@ public class MessageConvertHelper {
String cusp = jsonObject.getString("cusp");
JSONObject cuspJson = JSON.parseObject(cusp);
Integer isPreview = cuspJson.getInteger("is_preview");
if (Objects.equals(isPreview, 1)) {
log.info("预览数据不处理");
return null;
}
String sysp = jsonObject.getString("sysp");
JSONObject syspJson = JSON.parseObject(sysp);
......
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