using SqlSugar; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; namespace WCS.Entity { /// /// 扭转分配机台数量表 /// [Tenant("sx")] [SugarTable("TorschWbCount")] public partial class TorschWbCount { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")] public long Id { get; set; } /// /// 扭转机台号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)] public string Code { get; set; } /// /// 已分配的任务数 /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int WbCount { get; set; } /// /// 扫码设备号 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string Memo { get; set; } } }