提交代码

dev-discount
胡锐 2 years ago
parent 49e1471d4e
commit c82ca24c2d
  1. 1
      hai-service/src/main/java/com/hai/dao/HighOrderMapperExt.java
  2. 9
      hai-service/src/main/java/com/hai/model/GasOrderModel.java

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

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

Loading…
Cancel
Save