35 lines
911 B
C#
35 lines
911 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "State", ColumnDescription = "状态", Length = 64)]
|
|
public int? State { get; set; }
|
|
|
|
}
|