GetVoucherInfoRes.php 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. namespace ACES\Common\domain;
  3. class GetVoucherInfoRes
  4. {
  5. private $errorCode;
  6. private $errorMsg;
  7. private $data;
  8. /**
  9. * @return string
  10. */
  11. public function getErrorCode()
  12. {
  13. return $this->errorCode;
  14. }
  15. /**
  16. * @param string|null $errorCode
  17. */
  18. public function setErrorCode($errorCode)
  19. {
  20. $this->errorCode = $errorCode;
  21. }
  22. /**
  23. * @return string
  24. */
  25. public function getErrorMsg()
  26. {
  27. return $this->errorMsg;
  28. }
  29. /**
  30. * @param string|null $errorMsg
  31. */
  32. public function setErrorMsg($errorMsg)
  33. {
  34. $this->errorMsg = $errorMsg;
  35. }
  36. /**
  37. * @return GetVoucherInfoResVo
  38. */
  39. public function getData()
  40. {
  41. return $this->data;
  42. }
  43. /**
  44. * @param GetVoucherInfoResVo|null $data
  45. */
  46. public function setData($data)
  47. {
  48. $this->data = $data;
  49. }
  50. }