线边库

This commit is contained in:
qianhao.xu
2025-03-18 15:22:30 +08:00
parent ab8c1dbb9b
commit e14f34a107
31 changed files with 2121 additions and 5 deletions

View File

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