TorschWbCount.cs 881 B

12345678910111213141516171819202122232425262728293031
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Wms.Screen.SqlSugar.ZhongTian.SX
  6. {
  7. /// <summary>
  8. /// 扭转分配机台数量表
  9. /// </summary>
  10. [Tenant("sx")]
  11. [SugarTable("TorschWbCount")]
  12. public partial class TorschWbCount
  13. {
  14. /// <summary>
  15. /// Id
  16. /// </summary>
  17. [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")]
  18. public long Id { get; set; }
  19. /// <summary>
  20. /// 扭转机台号
  21. /// </summary>
  22. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  23. public string Code { get; set; }
  24. /// <summary>
  25. /// 已分配的任务数
  26. /// </summary>
  27. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  28. public int WbCount { get; set; }
  29. }
  30. }