using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.BZModels.Models.SX
{
[Tenant("sx")]
[SugarTable("Base_Torchbandinfo")]
public class BaseTorchbandinfo : BaseModel
{
///
/// ContBarCode
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string ContBarCode { get; set; }
///
/// TaskNo
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
public string TaskNo { get; set; }
///
/// WorkStation
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
public string WorkStation { get; set; }
///
/// Machine
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 1, IsNullable = true)]
public string Machine { get; set; }
///
/// IsStop
///
[SugarColumn(ColumnDataType = "int", IsNullable = true)]
public int? IsStop { get; set; }
}
}