using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 盒子扩展表 /// public partial class GoodsExtend { /// /// 主键 /// public uint Id { get; set; } /// /// 奖品Id /// public int GoodsId { get; set; } /// /// 微信支付 /// public bool? PayWechat { get; set; } /// /// 余额支付 /// public bool? PayBalance { get; set; } /// /// 货币支付 /// public bool? PayCurrency { get; set; } /// /// 货币2支付 /// public bool? PayCurrency2 { get; set; } /// /// 优惠券支付 /// public bool? PayCoupon { get; set; } /// /// 是否抵扣 1:抵扣 0:支付 /// public bool? IsDeduction { get; set; } }