Commit b18e02f1 by 徐高华

协商记录

parent dd0536e8
......@@ -262,7 +262,7 @@ public class GicOrderRefundController {
OrderRefundConsultVO vo = EntityUtil.changeEntityByJSON(OrderRefundConsultVO.class, dto) ;
if(StringUtils.isNotEmpty(dto.getOperInfo())) {
ConsultOperVO oper = JSONObject.parseObject(dto.getOperInfo(), ConsultOperVO.class) ;
vo.setOper(oper);
vo.setOperInfo(oper);
}
list.add(vo) ;
}
......@@ -280,7 +280,7 @@ public class GicOrderRefundController {
OrderExchangeConsultVO vo = EntityUtil.changeEntityByJSON(OrderExchangeConsultVO.class, dto) ;
if(StringUtils.isNotEmpty(dto.getOperInfo())) {
ConsultOperVO oper = JSONObject.parseObject(dto.getOperInfo(), ConsultOperVO.class) ;
vo.setOper(oper);
vo.setOperInfo(oper);
}
list.add(vo) ;
}
......
......@@ -60,14 +60,14 @@ public class OrderExchangeConsultVO implements Serializable {
*/
private Date updateTime;
private ConsultOperVO oper ;
public ConsultOperVO getOper() {
return oper;
private ConsultOperVO operInfo ;
public ConsultOperVO getOperInfo() {
return operInfo;
}
public void setOper(ConsultOperVO oper) {
this.oper = oper;
public void setOperInfo(ConsultOperVO operInfo) {
this.operInfo = operInfo;
}
public String getReason() {
......
......@@ -85,14 +85,14 @@ public class OrderRefundConsultVO implements Serializable {
private String extJson ;
private ConsultOperVO oper ;
public ConsultOperVO getOper() {
return oper;
private ConsultOperVO operInfo ;
public ConsultOperVO getOperInfo() {
return operInfo;
}
public void setOper(ConsultOperVO oper) {
this.oper = oper;
public void setOperInfo(ConsultOperVO operInfo) {
this.operInfo = operInfo;
}
public String getExtJson() {
......
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