获取店铺订单支付URL

This commit is contained in:
2025-11-11 14:47:31 +08:00
parent b68f207eed
commit d33e177e29
2 changed files with 8 additions and 6 deletions

View File

@@ -118,6 +118,8 @@ public class CheckOrderPay implements Serializable {
private String remark;
private String extend;
public Integer getSeatNum() {
return seatNum == null ? 0 : seatNum;
@@ -138,7 +140,7 @@ public class CheckOrderPay implements Serializable {
return newCustomerDiscountAmount == null ? BigDecimal.ZERO : newCustomerDiscountAmount;
}
/**
/**
* 满减活动抵扣金额
*/
public BigDecimal getDiscountActAmount() {
@@ -165,7 +167,7 @@ public class CheckOrderPay implements Serializable {
return roundAmount == null ? BigDecimal.ZERO : roundAmount;
}
public BigDecimal getVipDiscountAmount(){
public BigDecimal getVipDiscountAmount() {
return vipDiscountAmount == null ? BigDecimal.ZERO : vipDiscountAmount;
}