using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class Collect { public uint Id { get; set; } /// /// 用户id /// public uint UserId { get; set; } /// /// 盒子ID /// public uint GoodsId { get; set; } /// /// 箱号 /// public uint Num { get; set; } /// /// 1一番赏 2无限赏 3擂台赏 4抽卡机 5积分赏 6全局赏 7福利盲盒 8领主赏 9连击赏 /// public byte Type { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } }