using SqlSugar;
namespace wms.sqlsugar.model.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", Length = 10, IsNullable = true)]
public string Machine { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public int IsStop { get; set; }
}
}