TorschWbCount.cs 698 B

1234567891011121314151617181920212223242526
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.sx
  6. {
  7. /// <summary>
  8. /// 扭转机台分配数量表
  9. /// </summary>
  10. [Tenant("sx")]
  11. [SugarTable("TorschWbCount")]
  12. public partial class TorschWbCount : BaseModel
  13. {
  14. /// <summary>
  15. /// 扭转机台号
  16. /// </summary>
  17. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  18. public string Code { get; set; }
  19. /// <summary>
  20. /// 已分配的任务数
  21. /// </summary>
  22. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  23. public int WbCount { get; set; }
  24. }
  25. }