WCS_PalletizingCode.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WCS_Client.Models
  8. {
  9. public class WCS_PalletizingCode
  10. {
  11. /// <summary>
  12. /// 码垛编号(码垛机器人使用)
  13. /// </summary>
  14. [SugarColumn(IsPrimaryKey = true)]
  15. public int PalletizingNo { get; set; }
  16. /// <summary>
  17. /// 子托盘编号(码垛机器人使用)
  18. /// </summary>
  19. public int PalletizingSonTrayNo { get; set; }
  20. /// <summary>
  21. /// 子托盘编码(WMS中的编码)
  22. /// </summary>
  23. public string PalletizingSonTrayCode { get; set; }
  24. /// <summary>
  25. /// 子托盘尺寸
  26. /// </summary>
  27. public string PalletizingSonTraySize { get; set; }
  28. /// <summary>
  29. /// 箱子编号(码垛机器人使用)
  30. /// </summary>
  31. public int PalletizingBoxNo { get; set; }
  32. /// <summary>
  33. /// 箱子尺寸
  34. /// </summary>
  35. public string PalletizingBoxSize { get; set; }
  36. public string Notes { get; set; }
  37. }
  38. }