TorschWbCount.cs 1.1 KB

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