using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 盒子分类
///
public partial class Category
{
public uint Id { get; set; }
///
/// 商品名称
///
public string Title { get; set; } = null!;
///
/// 排序
///
public uint Sort { get; set; }
///
/// 添加时间
///
public uint Addtime { get; set; }
///
/// 修改时间
///
public uint UpdateTime { get; set; }
}