ptBillMachinfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.pt
  6. {
  7. [Tenant("pt")]
  8. [SugarTable("Bill_MachInfo")]
  9. public partial class ptBillMachinfo : BaseModel
  10. {
  11. /// <summary>
  12. /// WarehouseId
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  15. public long WarehouseId { get; set; }
  16. /// <summary>
  17. /// WareAreaId
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  20. public long WareAreaId { get; set; }
  21. /// <summary>
  22. /// IsStop
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  25. public int IsStop { get; set; }
  26. /// <summary>
  27. /// MachNo
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  30. public string MachNo { get; set; }
  31. /// <summary>
  32. /// Name
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  35. public string Name { get; set; }
  36. /// <summary>
  37. /// GrpCode
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  40. public string GrpCode { get; set; }
  41. /// <summary>
  42. /// Station
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  45. public string Station { get; set; }
  46. /// <summary>
  47. /// Direction
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  50. public string Direction { get; set; }
  51. }
  52. }