using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 商品表 /// public partial class KkProduct { public uint Id { get; set; } /// /// 秒杀时间段id /// public uint SeckillId { get; set; } /// /// 分类父级id /// public uint CateId1 { get; set; } /// /// 分类子级id /// public uint CateId2 { get; set; } /// /// 商品名称 /// public string Title { get; set; } = null!; /// /// 商品主图 /// public string Image { get; set; } = null!; /// /// 详情图 /// public string DetailImage { get; set; } = null!; /// /// 商品详情 /// public string? Content { get; set; } /// /// 运费 /// public decimal Freight { get; set; } /// /// 销量 /// public uint SaleNum { get; set; } /// /// 商品排序 /// public uint Sort { get; set; } /// /// 0上架 1下架 /// public byte Status { get; set; } /// /// 规格信息 /// public string? SpecData { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 修改时间 /// public uint UpdateTime { get; set; } }