cpBillLocationMap.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.cp
  6. {
  7. [Tenant("cp")]
  8. [SugarTable("bill_location_map", "机台信息表")]
  9. public class cpBillLocationMap : BaseModel
  10. {
  11. [SugarColumn(ColumnName = "material_id")]
  12. public long MaterialId { get; set; }
  13. [SugarColumn(ColumnName = "location_type")]
  14. public int LocationType { get; set; }
  15. [SugarColumn(ColumnName = "tunnel", Length = 10)]
  16. public int Tunnel { get; set; }
  17. [SugarColumn(ColumnName = "size", Length = 10, IsNullable = true)]
  18. public string Size { get; set; }
  19. [SugarColumn(ColumnName = "zone_id")]
  20. public long ZoneId { get; set; }
  21. [SugarColumn(ColumnName = "grade", Length = 10, IsNullable = true)]
  22. public string Grade { get; set; }
  23. [SugarColumn(ColumnName = "batch_id", IsNullable = true)]
  24. public long BatchId { get; set; }
  25. [SugarColumn(ColumnName = "material_state", Length = 50, IsNullable = true)]
  26. public string MaterialState { get; set; }
  27. [SugarColumn(ColumnName = "depth")]
  28. public int Depth { get; set; }
  29. [SugarColumn(ColumnName = "layer")]
  30. public int Layer { get; set; }
  31. [SugarColumn(ColumnName = "col")]
  32. public int Col { get; set; }
  33. [SugarColumn(ColumnName = "row")]
  34. public int Row { get; set; }
  35. [SugarColumn(ColumnName = "location_lock")]
  36. public int LocationLock { get; set; }
  37. }
  38. }