提交代码

dev-discount
胡锐 2 years ago
commit 160dccf1e0
  1. 1
      hai-service/src/main/java/com/hai/dao/HighOrderMapperExt.java
  2. 9
      hai-service/src/main/java/com/hai/model/GasOrderModel.java

@ -1114,6 +1114,7 @@ public interface HighOrderMapperExt {
" b.deduction_price deductionPrice," +
" b.pay_real_price payRealPrice," +
" b.order_status status," +
" REPLACE(b.mem_phone, SUBSTR(b.mem_phone,4,4), '****') merPhone," +
" a.goods_name gasName," +
" (select address from high_merchant_store where id = a.goods_id) gasAddress," +
" a.goods_img gasLogo," +

@ -17,6 +17,7 @@ public class GasOrderModel {
private BigDecimal deductionPrice;
private BigDecimal payRealPrice;
private Integer status;
private String merPhone;
private String gasLogo;
private String gasName;
private String gasAddress;
@ -46,6 +47,14 @@ public class GasOrderModel {
this.gasStaffName = gasStaffName;
}
public String getMerPhone() {
return merPhone;
}
public void setMerPhone(String merPhone) {
this.merPhone = merPhone;
}
public Boolean getPrintStatus() {
return printStatus;
}

Loading…
Cancel
Save