@ -1099,6 +1099,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;
@ -37,6 +38,14 @@ public class GasOrderModel {
private Boolean printStatus;
private Integer printNum;
public String getMerPhone() {
return merPhone;
}
public void setMerPhone(String merPhone) {
this.merPhone = merPhone;
public Boolean getPrintStatus() {
return printStatus;