MoveCoil.cs 835 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.LZMes.Client.UIM
  6. {
  7. class MoveCoil
  8. {
  9. private string fromYard = "";
  10. private string toYard = "";
  11. private string coilNo = "";
  12. public string getFromYard()
  13. {
  14. return this.fromYard;
  15. }
  16. public void setFromYard(string fromYard)
  17. {
  18. this.fromYard = fromYard;
  19. }
  20. public string getToYard()
  21. {
  22. return this.toYard;
  23. }
  24. public void setToYard(string toYard)
  25. {
  26. this.toYard = toYard;
  27. }
  28. public string getCoilNo()
  29. {
  30. return this.coilNo;
  31. }
  32. public void setCoilNo(string coilNo)
  33. {
  34. this.coilNo = coilNo;
  35. }
  36. }
  37. }