JSonObject jsonObject = JSONObject.parseObject(notifyMessage);json对象转json字符串
String message = jsonObject.getString("message");
json对象转java对象
NotifyMessage notifyMessage= JSON.toJavaObject(jsonObject, NotifyMessage .class);

JSonObject jsonObject = JSONObject.parseObject(notifyMessage);json对象转json字符串
String message = jsonObject.getString("message");
json对象转java对象
NotifyMessage notifyMessage= JSON.toJavaObject(jsonObject, NotifyMessage .class);