MatZcMMoveOutEntity.cs 880 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using com.steering.pss.ydm.entity;
  6. using System.ComponentModel;
  7. namespace Core.StlMes.Client.YdmPipeManage.Entity
  8. {
  9. public class MatZcMMoveOutEntity : MatZcMEntity
  10. {
  11. private string tarRecFlag;
  12. [Description("接收标识")]
  13. public string TarRecFlag
  14. {
  15. get { return tarRecFlag; }
  16. set { tarRecFlag = value; }
  17. }
  18. private string locationNo;
  19. [Description("料位号")]
  20. public string LocationNo
  21. {
  22. get { return locationNo; }
  23. set { locationNo = value; }
  24. }
  25. private string plineName;
  26. [Description("生产产线")]
  27. public string PlineName
  28. {
  29. get { return plineName; }
  30. set { plineName = value; }
  31. }
  32. }
  33. }