WCSPalletizinglayer.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. using WMS.BZModels;
  5. namespace wms.sqlsugar.model.fj
  6. {
  7. [Tenant("fj")]
  8. [SugarTable("WCS_PalletizingLayer")]
  9. public class WCSPalletizinglayer : BaseEntityModel
  10. {
  11. /// <summary>
  12. /// Id
  13. /// </summary>
  14. [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")]
  15. public int Id { get; set; }
  16. /// <summary>
  17. /// 码垛主表Id
  18. /// </summary>
  19. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛主表Id")]
  20. public int PalletizingId { get; set; }
  21. /// <summary>
  22. /// 是否空置
  23. /// </summary>
  24. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")]
  25. public bool IsEmpty { get; set; }
  26. /// <summary>
  27. /// 层号
  28. /// </summary>
  29. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="层号")]
  30. public int LayerNo { get; set; }
  31. /// <summary>
  32. /// 行数
  33. /// </summary>
  34. [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="行数")]
  35. public int RowCountQty { get; set; }
  36. /// <summary>
  37. /// 当前所有的物料号
  38. /// </summary>
  39. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="当前所有的物料号")]
  40. public string MatCodeList { get; set; }
  41. /// <summary>
  42. /// 是否结束
  43. /// </summary>
  44. [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
  45. public bool Finish { get; set; }
  46. /// <summary>
  47. /// 仓库编号
  48. /// </summary>
  49. [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
  50. public string WarehouseCode { get; set; }
  51. }
  52. }