MatGpMAndStorageEntity.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.LgResMgt
  8. {
  9. public class MatGpMAndStorageEntity:MatGpMEntity
  10. {
  11. /// <summary>
  12. /// 料位代码{4位库号-1位区号-2行号-2列号}
  13. /// </summary>
  14. private string locationNo = "";
  15. /// <summary>
  16. /// 料位代码{4位库号-1位区号-2行号-2列号}
  17. /// </summary>
  18. [Description("料位代码{4位库号-1位区号-2行号-2列号}")]
  19. [Nullable(false)]
  20. [DataLength(9)]
  21. public string LocationNo
  22. {
  23. get { return locationNo; }
  24. set { locationNo = value; }
  25. }
  26. /// <summary>
  27. /// 料位代码{4位库号-1位区号-2行号-2列号}
  28. /// </summary>
  29. private string locationName = "";
  30. /// <summary>
  31. /// 料位代码{4位库号-1位区号-2行号-2列号}
  32. /// </summary>
  33. [Description("料位")]
  34. [Nullable(false)]
  35. [DataLength(9)]
  36. public string LocationName
  37. {
  38. get { return locationName; }
  39. set { locationName = value; }
  40. }
  41. /// <summary>
  42. /// 仓库代码(仓库类型1+仓储地址代码2+1位序号)
  43. /// </summary>
  44. private string storageNo = "";
  45. }
  46. }