DigitalFactory/Admin.NET/Admin.NET.Application/Entity/ProductionLine.cs

35 lines
911 B
C#
Raw Permalink Normal View History

2024-06-04 10:20:10 +00:00
using Admin.NET.Core;
namespace Admin.NET.Application.Entity;
/// <summary>
/// 生产线
/// </summary>
[SugarTable("ProductionLine","生产线")]
public class ProductionLine : EntityTenant
{
/// <summary>
/// 名称
/// </summary>
[SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)]
public string? Name { get; set; }
/// <summary>
/// 地址
/// </summary>
[SugarColumn(ColumnName = "Address", ColumnDescription = "地址", Length = 32)]
public string? Address { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 64)]
public string? Remarks { get; set; }
2024-07-12 16:18:35 +00:00
/// <summary>
/// 状态
/// </summary>
[SugarColumn(ColumnName = "State", ColumnDescription = "状态", Length = 64)]
public int? State { get; set; }
2024-06-04 10:20:10 +00:00
}