using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 商品分类 /// public partial class KkProductCate { public uint Id { get; set; } /// /// 分类标题 /// public string Title { get; set; } = null!; /// /// 分类图片 /// public string? Imgurl { get; set; } /// /// 排序值 /// public uint? Sort { get; set; } /// /// 1 正常 2 删除 /// public byte? Status { get; set; } /// /// 上级id /// public int? Pid { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 英文标题 /// public string? Title2 { get; set; } }