作者 zhangFan

change model

@@ -34,6 +34,7 @@ public class NMMS_CUSTOM_MT3201 { @@ -34,6 +34,7 @@ public class NMMS_CUSTOM_MT3201 {
34 34
35 private String goodsname; 35 private String goodsname;
36 36
  37 + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
37 private Date actime; 38 private Date actime;
38 39
39 private String status; 40 private String status;
@@ -44,6 +44,8 @@ public class NMMS_CUSTOM_MT520X { @@ -44,6 +44,8 @@ public class NMMS_CUSTOM_MT520X {
44 44
45 private String status; 45 private String status;
46 46
  47 + private String messageType;
  48 +
47 private Boolean isdelete; 49 private Boolean isdelete;
48 50
49 private String ext1; 51 private String ext1;
@@ -192,6 +194,14 @@ public class NMMS_CUSTOM_MT520X { @@ -192,6 +194,14 @@ public class NMMS_CUSTOM_MT520X {
192 return status; 194 return status;
193 } 195 }
194 196
  197 + public String getMessageType() {
  198 + return messageType;
  199 + }
  200 +
  201 + public void setMessageType(String messageType) {
  202 + this.messageType = messageType;
  203 + }
  204 +
195 public void setStatus(String status) { 205 public void setStatus(String status) {
196 this.status = status == null ? null : status.trim(); 206 this.status = status == null ? null : status.trim();
197 } 207 }
@@ -55,6 +55,12 @@ public class NMMS_CUSTOM_RESPONSE { @@ -55,6 +55,12 @@ public class NMMS_CUSTOM_RESPONSE {
55 55
56 private String cusrestext; 56 private String cusrestext;
57 57
  58 + private String operreason;
  59 +
  60 + private String operperson;
  61 +
  62 + private String opertel;
  63 +
58 public String getId() { 64 public String getId() {
59 return id; 65 return id;
60 } 66 }
@@ -238,4 +244,28 @@ public class NMMS_CUSTOM_RESPONSE { @@ -238,4 +244,28 @@ public class NMMS_CUSTOM_RESPONSE {
238 public void setCusrestext(String cusrestext) { 244 public void setCusrestext(String cusrestext) {
239 this.cusrestext = cusrestext == null ? null : cusrestext.trim(); 245 this.cusrestext = cusrestext == null ? null : cusrestext.trim();
240 } 246 }
  247 +
  248 + public String getOperreason() {
  249 + return operreason;
  250 + }
  251 +
  252 + public void setOperreason(String operreason) {
  253 + this.operreason = operreason;
  254 + }
  255 +
  256 + public String getOperperson() {
  257 + return operperson;
  258 + }
  259 +
  260 + public void setOperperson(String operperson) {
  261 + this.operperson = operperson;
  262 + }
  263 +
  264 + public String getOpertel() {
  265 + return opertel;
  266 + }
  267 +
  268 + public void setOpertel(String opertel) {
  269 + this.opertel = opertel;
  270 + }
241 } 271 }