namespace DOAN.Model.MES.material
{
///
/// 北泽线边库分类
///
[SugarTable("material_parts_categories")]
public class MaterialPartsCategories
{
///
/// 分类ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "category_id")]
public int CategoryId { get; set; }
///
/// 分类名称
///
[SugarColumn(ColumnName = "category_name")]
public string CategoryName { get; set; }
///
/// 父级分类ID
///
[SugarColumn(ColumnName = "parent_category_id")]
public int? ParentCategoryId { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "created_at")]
public DateTime? CreatedAt { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "updated_at")]
public DateTime? UpdatedAt { get; set; }
}
}