DeliverInfo.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace KplOpenYaoOrdersyncUpdatestate;
  3. class DeliverInfo{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.gongxiao.kepler.domain.DeliverInfo";
  7. }
  8. private $shipmentType;
  9. public function setShipmentType($shipmentType){
  10. $this->params['shipmentType'] = $shipmentType;
  11. }
  12. public function getShipmentType(){
  13. return $this->shipmentType;
  14. }
  15. private $customerCode;
  16. public function setCustomerCode($customerCode){
  17. $this->params['customerCode'] = $customerCode;
  18. }
  19. public function getCustomerCode(){
  20. return $this->customerCode;
  21. }
  22. private $deliveryId;
  23. public function setDeliveryId($deliveryId){
  24. $this->params['deliveryId'] = $deliveryId;
  25. }
  26. public function getDeliveryId(){
  27. return $this->deliveryId;
  28. }
  29. private $logiNo;
  30. public function setLogiNo($logiNo){
  31. $this->params['logiNo'] = $logiNo;
  32. }
  33. public function getLogiNo(){
  34. return $this->logiNo;
  35. }
  36. private $logiCompany;
  37. public function setLogiCompany($logiCompany){
  38. $this->params['logiCompany'] = $logiCompany;
  39. }
  40. public function getLogiCompany(){
  41. return $this->logiCompany;
  42. }
  43. function getInstance(){
  44. return $this->params;
  45. }
  46. }
  47. ?>