using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class Advert { public int Id { get; set; } /// /// 图片 /// public string Imgurl { get; set; } = null!; /// /// 跳转路径 /// public string? Url { get; set; } /// /// 排序 /// public uint Sort { get; set; } /// /// 类型 1首页轮播图 2抽卡机轮播图 /// public byte Type { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 修改时间 /// public uint UpdateTime { get; set; } /// /// 跳转类型 0不跳转 1优惠券 2一番赏 3无限赏 /// public byte? Ttype { get; set; } /// /// 优惠券id /// public uint? CouponId { get; set; } /// /// 盒子id /// public uint? GoodsId { get; set; } }