17 lines
387 B
C#
17 lines
387 B
C#
using Admin.NET.Core;
|
|
namespace Admin.NET.Application.Entity;
|
|
|
|
/// <summary>
|
|
/// 物料分类
|
|
/// </summary>
|
|
[SugarTable("MaterialClassify","物料分类")]
|
|
public class MaterialClassify : EntityTenant
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)]
|
|
public string? Name { get; set; }
|
|
|
|
}
|