AsCustomerDto.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace AfterSaleAfsApplyCreate;
  3. class AsCustomerDto{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.kpl.AfterSaleCustomerDto";
  7. }
  8. private $customerContactName;
  9. public function setCustomerContactName($customerContactName){
  10. $this->params['customerContactName'] = $customerContactName;
  11. }
  12. public function getCustomerContactName(){
  13. return $this->customerContactName;
  14. }
  15. private $customerTel;
  16. public function setCustomerTel($customerTel){
  17. $this->params['customerTel'] = $customerTel;
  18. }
  19. public function getCustomerTel(){
  20. return $this->customerTel;
  21. }
  22. private $customerMobilePhone;
  23. public function setCustomerMobilePhone($customerMobilePhone){
  24. $this->params['customerMobilePhone'] = $customerMobilePhone;
  25. }
  26. public function getCustomerMobilePhone(){
  27. return $this->customerMobilePhone;
  28. }
  29. private $customerEmail;
  30. public function setCustomerEmail($customerEmail){
  31. $this->params['customerEmail'] = $customerEmail;
  32. }
  33. public function getCustomerEmail(){
  34. return $this->customerEmail;
  35. }
  36. private $customerPostcode;
  37. public function setCustomerPostcode($customerPostcode){
  38. $this->params['customerPostcode'] = $customerPostcode;
  39. }
  40. public function getCustomerPostcode(){
  41. return $this->customerPostcode;
  42. }
  43. function getInstance(){
  44. return $this->params;
  45. }
  46. }
  47. ?>