using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 会员vip /// public partial class UserVip { public uint Id { get; set; } /// /// 等级名称 /// public string Title { get; set; } = null!; /// /// 图标 /// public string Imgurl { get; set; } = null!; /// /// 升级消费 /// public uint Condition { get; set; } /// /// 享受折扣 /// public decimal Discount { get; set; } /// /// 权益说明 /// public string Notice { get; set; } = null!; /// /// 更新时间 /// public uint UpdateTime { get; set; } }