Commit 61a02ef5 by 徐高华

储值

parent bc2871c8
......@@ -156,7 +156,31 @@ public class OrderRefundDetailVO implements Serializable {
* 订单卡券状态(新增)
*/
private OrderCouponDetailDTO orderCouponDetail;
/**
* 退的储值类型 800 储值卡 900 礼品卡
*/
private String refundStoredType;
/**
* 退的储值金额
*/
private Double refundStoredValue;
public String getRefundStoredType() {
return refundStoredType;
}
public Double getRefundStoredValue() {
return refundStoredValue;
}
public void setRefundStoredType(String refundStoredType) {
this.refundStoredType = refundStoredType;
}
public void setRefundStoredValue(Double refundStoredValue) {
this.refundStoredValue = refundStoredValue;
}
public Integer getUsePoint() {
return usePoint;
......
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