| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- class OpenOrderSplitDeliverNewRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.open.order.splitDeliverNew";
- }
-
- public function getApiParas(){
- if(empty($this->apiParas)){
- return "{}";
- }
- return $this->apiParas;
- }
-
- public function check(){
-
- }
-
- public function putOtherTextParam($key, $value){
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- private $version;
- public function setVersion($version){
- $this->version = $version;
- }
- public function getVersion(){
- return $this->version;
- }
- private $orderExtInfo;
- public function setOrderExtInfo($orderExtInfo){
- $this->apiParas['orderExtInfo'] = $orderExtInfo;
- }
- public function getOrderExtInfo(){
- return $this->apiParas['orderExtInfo'];
- }
- private $deliverInfo;
- public function setDeliverInfo($deliverInfo){
- $this->apiParas['deliverInfo'] = $deliverInfo;
- }
- public function getDeliverInfo(){
- return $this->apiParas['deliverInfo'];
- }
- private $json;
- public function setJson($json){
- $this->apiParas['json'] = $json;
- }
- public function getJson(){
- return $this->apiParas['json'];
- }
- }
- ?>
|