REQ-3201: 备份
This commit is contained in:
parent
3c668c882d
commit
d4fc52f5af
@ -3,6 +3,7 @@ package cn.axzo.nanopart.ess.api.request;
|
||||
import com.alibaba.fastjson.JSON;
|
||||
import com.alibaba.fastjson.JSONArray;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.alibaba.fastjson.annotation.JSONField;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
@ -14,12 +15,16 @@ import lombok.Setter;
|
||||
public class CallbackRequest {
|
||||
|
||||
@JsonProperty(value = "MsgId")
|
||||
@JSONField(name = "MsgId")
|
||||
private String MsgId;
|
||||
@JsonProperty(value = "MsgType")
|
||||
@JSONField(name = "MsgType")
|
||||
private String MsgType;
|
||||
@JsonProperty(value = "MsgVersion")
|
||||
@JSONField(name = "MsgVersion")
|
||||
private String MsgVersion;
|
||||
@JsonProperty(value = "MsgData")
|
||||
@JSONField(name = "MsgData")
|
||||
private JSONObject MsgData;
|
||||
|
||||
public <T> T readMsgData(Class<T> clazz) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user