using Admin.NET.Core; namespace Admin.NET.Application.Entity; /// /// 生产线 /// [SugarTable("ProductionLine","生产线")] public class ProductionLine : EntityTenant { /// /// 名称 /// [SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)] public string? Name { get; set; } /// /// 地址 /// [SugarColumn(ColumnName = "Address", ColumnDescription = "地址", Length = 32)] public string? Address { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 64)] public string? Remarks { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "State", ColumnDescription = "状态", Length = 64)] public int? State { get; set; } }