12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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
- {
- /// <summary>
- /// ContBarCode
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
- public string ContBarCode { get; set; }
- /// <summary>
- /// TaskNo
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
- public string TaskNo { get; set; }
- /// <summary>
- /// WorkStation
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
- public string WorkStation { get; set; }
- /// <summary>
- /// Machine
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 1, IsNullable = true)]
- public string Machine { get; set; }
- /// <summary>
- /// IsStop
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = true)]
- public int? IsStop { get; set; }
- }
- }
|