Commit f754a47c by 徐高华

协商记录

parent 27fcc0a3
package com.gic.haoban.manage.web.vo.order.refund;
import java.io.Serializable;
public class ConsultOperVO implements Serializable {
private int operType;
private String operName;
private String operCode;
public int getOperType() {
return operType;
}
public String getOperName() {
return operName;
}
public String getOperCode() {
return operCode;
}
public void setOperType(int operType) {
this.operType = operType;
}
public void setOperName(String operName) {
this.operName = operName;
}
public void setOperCode(String operCode) {
this.operCode = operCode;
}
}
......@@ -59,6 +59,16 @@ public class OrderExchangeConsultVO implements Serializable {
* 更新时间
*/
private Date updateTime;
private ConsultOperVO oper ;
public ConsultOperVO getOper() {
return oper;
}
public void setOper(ConsultOperVO oper) {
this.oper = oper;
}
public String getReason() {
return reason;
......
......@@ -84,6 +84,16 @@ public class OrderRefundConsultVO implements Serializable {
private Integer refundDeliverType;
private String extJson ;
private ConsultOperVO oper ;
public ConsultOperVO getOper() {
return oper;
}
public void setOper(ConsultOperVO oper) {
this.oper = oper;
}
public String getExtJson() {
return extJson;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment