YjcFgcGetOrderListRequest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. class YjcFgcGetOrderListRequest
  3. {
  4. private $apiParas = array();
  5. public function getApiMethodName(){
  6. return "jingdong.yjc.fgc.getOrderList";
  7. }
  8. public function getApiParas(){
  9. if(empty($this->apiParas)){
  10. return "{}";
  11. }
  12. return $this->apiParas;
  13. }
  14. public function check(){
  15. }
  16. public function putOtherTextParam($key, $value){
  17. $this->apiParas[$key] = $value;
  18. $this->$key = $value;
  19. }
  20. private $version;
  21. public function setVersion($version){
  22. $this->version = $version;
  23. }
  24. public function getVersion(){
  25. return $this->version;
  26. }
  27. private $startTime;
  28. public function setStartTime($startTime){
  29. $this->startTime = $startTime;
  30. $this->apiParas["startTime"] = $startTime;
  31. }
  32. public function getStartTime(){
  33. return $this->startTime;
  34. }
  35. private $endTime;
  36. public function setEndTime($endTime){
  37. $this->endTime = $endTime;
  38. $this->apiParas["endTime"] = $endTime;
  39. }
  40. public function getEndTime(){
  41. return $this->endTime;
  42. }
  43. }