第二件半价券

This commit is contained in:
wangw 2025-09-29 15:51:49 +08:00
parent 76d69a7c5c
commit bdc7b208c0
1 changed files with 4 additions and 0 deletions

View File

@ -201,6 +201,10 @@ public class OrderDetail implements Serializable {
return packAmount == null ? BigDecimal.ZERO : packAmount;
}
public BigDecimal getDiscountAmount() {
return discountAmount == null ? BigDecimal.ZERO : discountAmount;
}
public String getRefundRemark() {
return StrUtil.isBlank(refundRemark) ? "" : refundRemark + " ";
}