using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.SqlSugar.ZhongTian.SX { /// /// 扭转工位信息绑定表 /// [Tenant("sx")] [SugarTable("Base_Torchbandinfo")] public partial class BaseTorchbandinfo : BaseModel { /// /// 条码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string ContBarCode { get; set; } /// /// 任务号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string TaskNo { get; set; } /// /// 扭转机台工位 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string WorkStation { get; set; } /// /// 扭转机台号 /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true)] public string Machine { get; set; } /// /// 状态 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public int IsStop { get; set; } } }