namespace ZR.Mall.Model { /// /// 商品品牌 /// [SugarTable("mms_brand", "品牌表")] [Tenant("1")] public class Brand { [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public long Id { get; set; } /// /// 品牌名 /// public string Name { get; set; } /// /// 品牌logo /// public string Logo { get; set; } /// /// 品牌介绍 /// public string Description { get; set; } } }