using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Wms.Screen.SqlSugar.ZhongTian.SX
{
///
/// 扭转分配机台数量表
///
[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; }
}
}