KxShoppingExtInfoModel.php 774 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. namespace common\expand\alipay\order\notice\model;
  3. class KxShoppingExtInfoModel
  4. {
  5. protected $key;
  6. protected $val;
  7. /**
  8. * @param string $key
  9. * @return KxShoppingExtInfoModel
  10. */
  11. public function setKey(string $key): KxShoppingExtInfoModel
  12. {
  13. $this->key = $key;
  14. return $this;
  15. }
  16. /**
  17. * @param string $val
  18. * @return KxShoppingExtInfoModel
  19. */
  20. public function setVal(string $val): KxShoppingExtInfoModel
  21. {
  22. $this->val = $val;
  23. return $this;
  24. }
  25. /**
  26. * @return string
  27. */
  28. public function getKey(): string
  29. {
  30. return $this->key;
  31. }
  32. /**
  33. * @return string
  34. */
  35. public function getVal(): string
  36. {
  37. return $this->val;
  38. }
  39. }