Commit 747f0f85 by 徐高华

核销码

parent b18a5b14
...@@ -487,7 +487,7 @@ public class GicOrderController { ...@@ -487,7 +487,7 @@ public class GicOrderController {
Page<IntegralMallExchangeLogDTO> page = new Page<IntegralMallExchangeLogDTO>(); Page<IntegralMallExchangeLogDTO> page = new Page<IntegralMallExchangeLogDTO>();
page.setPageSize(1); page.setPageSize(1);
page.setCurrentPage(1); page.setCurrentPage(1);
Map<String, Object> params = new HashMap<>(8); Map<String, Object> params = new HashMap<>();
params.put("enterpriseId", enterpriseId); params.put("enterpriseId", enterpriseId);
params.put("proType", 2); params.put("proType", 2);
params.put("changeType", 4); params.put("changeType", 4);
......
...@@ -76,12 +76,24 @@ public class OrderListVO implements Serializable { ...@@ -76,12 +76,24 @@ public class OrderListVO implements Serializable {
private Date pickUpTime ; private Date pickUpTime ;
// 应付总额 // 应付总额
private Double mallProAllPrice ; private Double mallProAllPrice ;
/**
* 核销吗code
*/
private String writeOffCode;
/** /**
* 评价 * 评价
*/ */
private EvaluateVO evaluateVO; private EvaluateVO evaluateVO;
public String getWriteOffCode() {
return writeOffCode;
}
public void setWriteOffCode(String writeOffCode) {
this.writeOffCode = writeOffCode;
}
public EvaluateVO getEvaluateVO() { public EvaluateVO getEvaluateVO() {
return evaluateVO; return evaluateVO;
} }
......
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