提交代码

dev-discount
胡锐 3 years ago
parent 714bf9c36e
commit 1cecea1e90
  1. 4
      hai-service/src/main/java/com/hai/dao/HighOrderMapperExt.java
  2. 18
      hai-service/src/main/java/com/hai/model/GasOrderModel.java

@ -1106,7 +1106,9 @@ public interface HighOrderMapperExt {
" a.gas_price_preferences gasPricePreferences," +
" b.create_time createTime," +
" b.pay_time payTime," +
" b.refund_time refundTime" +
" b.refund_time refundTime," +
" b.refund_price refundPrice," +
" b.refund_content refundContent" +
" from high_child_order a,high_order b " +
" where a.order_id = b.id " +
" and goods_type = 3 " +

@ -32,6 +32,24 @@ public class GasOrderModel {
private Date createTime;
private Date payTime;
private Date refundTime;
private BigDecimal refundPrice;
private String refundContent;
public BigDecimal getRefundPrice() {
return refundPrice;
}
public void setRefundPrice(BigDecimal refundPrice) {
this.refundPrice = refundPrice;
}
public String getRefundContent() {
return refundContent;
}
public void setRefundContent(String refundContent) {
this.refundContent = refundContent;
}
public Long getOrderId() {
return orderId;

Loading…
Cancel
Save