BillRingpalletizinginfo.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.fj
  6. {
  7. /// <summary>
  8. /// 环形库码垛缓存信息
  9. /// </summary>
  10. [Tenant("fj")]
  11. [SugarTable("Bill_RingPalletizingInfo")]
  12. public class BillRingpalletizinginfo : BaseModel
  13. {
  14. /// <summary>
  15. /// 仓库ID
  16. /// </summary>
  17. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false , ColumnDescription ="仓库ID")]
  18. public long WareHouseId { get; set; }
  19. /// <summary>
  20. /// 垛形主表ID
  21. /// </summary>
  22. [SugarColumn(ColumnDataType ="bigint" , IsNullable = false , ColumnDescription ="垛形主表ID")]
  23. public long BomSetGrpId { get; set; }
  24. /// <summary>
  25. /// 工字轮个数
  26. /// </summary>
  27. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="工字轮个数")]
  28. public int HWCountQty { get; set; }
  29. /// <summary>
  30. /// BomCode(投料信息)
  31. /// </summary>
  32. [SugarColumn(ColumnDataType ="nvarchar" , Length = 200 , IsNullable = false , ColumnDescription ="BomCode(投料信息)")]
  33. public string BomCode { get; set; }
  34. /// <summary>
  35. /// 已有工字轮个数
  36. /// </summary>
  37. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="已有工字轮个数")]
  38. public int HaveQty { get; set; }
  39. /// <summary>
  40. /// 是否出库
  41. /// </summary>
  42. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否出库")]
  43. public bool Out { get; set; }
  44. /// <summary>
  45. /// 上一次分配时的放置位信息
  46. /// </summary>
  47. [SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="上一次分配时的放置位信息")]
  48. public int? LastXYNO { get; set; }
  49. }
  50. }