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

48 lines
890 B
C#

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