using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.Carts; namespace ARW.Model.Dto.Api.Pay { /// /// 优惠后的结果 /// /// @author lwh /// @date 2023-10-14 /// public class DiscountRes { /// /// 优惠券guid /// public long CouponGuid { get; set; } /// /// 优惠券金额 /// public decimal CouponMoney { get; set; } /// /// 优惠后的价格 /// public decimal DiscountPrice { get; set; } } }