作者 zhangFan

change model

... ... @@ -34,6 +34,7 @@ public class NMMS_CUSTOM_MT3201 {
private String goodsname;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
private Date actime;
private String status;
... ...
... ... @@ -44,6 +44,8 @@ public class NMMS_CUSTOM_MT520X {
private String status;
private String messageType;
private Boolean isdelete;
private String ext1;
... ... @@ -192,6 +194,14 @@ public class NMMS_CUSTOM_MT520X {
return status;
}
public String getMessageType() {
return messageType;
}
public void setMessageType(String messageType) {
this.messageType = messageType;
}
public void setStatus(String status) {
this.status = status == null ? null : status.trim();
}
... ...
... ... @@ -55,6 +55,12 @@ public class NMMS_CUSTOM_RESPONSE {
private String cusrestext;
private String operreason;
private String operperson;
private String opertel;
public String getId() {
return id;
}
... ... @@ -238,4 +244,28 @@ public class NMMS_CUSTOM_RESPONSE {
public void setCusrestext(String cusrestext) {
this.cusrestext = cusrestext == null ? null : cusrestext.trim();
}
public String getOperreason() {
return operreason;
}
public void setOperreason(String operreason) {
this.operreason = operreason;
}
public String getOperperson() {
return operperson;
}
public void setOperperson(String operperson) {
this.operperson = operperson;
}
public String getOpertel() {
return opertel;
}
public void setOpertel(String opertel) {
this.opertel = opertel;
}
}
... ...