using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 普通商城商品分类
///
public partial class KkProductCategory
{
public uint Id { get; set; }
///
/// 父级id
///
public uint Pid { get; set; }
///
/// 商品名称
///
public string Title { get; set; } = null!;
///
/// 分类图片
///
public string Imgurl { get; set; } = null!;
///
/// 1显示 0隐藏
///
public byte Status { get; set; }
///
/// 0
///
public uint Sort { get; set; }
///
/// 添加时间
///
public uint Addtime { get; set; }
///
/// 修改时间
///
public uint UpdateTime { get; set; }
}