...
|
...
|
@@ -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;
|
|
|
}
|
|
|
} |
...
|
...
|
|