| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?php
- class OpenGetSplitOrdersRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.open.getSplitOrders";
- }
-
- 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 $beginTime;
-
- public function setBeginTime($beginTime){
- $this->beginTime = $beginTime;
- $this->apiParas["beginTime"] = $beginTime;
- }
- public function getBeginTime(){
- return $this->beginTime;
- }
- private $endTime;
-
- public function setEndTime($endTime){
- $this->endTime = $endTime;
- $this->apiParas["endTime"] = $endTime;
- }
- public function getEndTime(){
- return $this->endTime;
- }
- private $orderState;
-
- public function setOrderState($orderState){
- $this->orderState = $orderState;
- $this->apiParas["orderState"] = $orderState;
- }
- public function getOrderState(){
- return $this->orderState;
- }
- }
-
-
|