cpBillMachinfo.cs 1.7 KB

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