BaseTorchbandinfo.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WMS.BZModels.Models.SX
  8. {
  9. [Tenant("sx")]
  10. [SugarTable("Base_Torchbandinfo")]
  11. public class BaseTorchbandinfo : BaseModel
  12. {
  13. /// <summary>
  14. /// ContBarCode
  15. /// </summary>
  16. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  17. public string ContBarCode { get; set; }
  18. /// <summary>
  19. /// TaskNo
  20. /// </summary>
  21. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  22. public string TaskNo { get; set; }
  23. /// <summary>
  24. /// WorkStation
  25. /// </summary>
  26. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  27. public string WorkStation { get; set; }
  28. /// <summary>
  29. /// Machine
  30. /// </summary>
  31. [SugarColumn(ColumnDataType = "nvarchar", Length = 1, IsNullable = true)]
  32. public string Machine { get; set; }
  33. /// <summary>
  34. /// IsStop
  35. /// </summary>
  36. [SugarColumn(ColumnDataType = "int", IsNullable = true)]
  37. public int? IsStop { get; set; }
  38. }
  39. }