ChouBox/ChouBox.Model/Entities/KkProductCategory.cs
2025-04-23 19:20:23 +08:00

48 lines
902 B
C#

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