using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class GoodsExtendList { /// /// 主键 /// public uint Id { get; set; } /// /// 奖品Id /// public int GoodsId { get; set; } /// /// 盲盒id /// public int GoodsListId { get; set; } /// /// 最低抽奖次数 /// public int RewardNum { get; set; } /// /// 奖品编号 /// public string PrizeCode { get; set; } = null!; /// /// 1,默认最低抽奖次数,2指定多少抽出,3指定范围内必出,4:指定用户 /// public int RawrdType { get; set; } /// /// 最低抽奖次数 /// public int? RewardNum1 { get; set; } }