| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace JdUnionOpenOrderRowSupplyQuery;
- class OrderReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.order.row.SupplyOrderRowReq";
- }
-
- private $pageIndex;
-
- public function setPageIndex($pageIndex){
- $this->params['pageIndex'] = $pageIndex;
- }
- public function getPageIndex(){
- return $this->pageIndex;
- }
-
- private $pageSize;
-
- public function setPageSize($pageSize){
- $this->params['pageSize'] = $pageSize;
- }
- public function getPageSize(){
- return $this->pageSize;
- }
-
- private $type;
-
- public function setType($type){
- $this->params['type'] = $type;
- }
- public function getType(){
- return $this->type;
- }
-
- private $startTime;
-
- public function setStartTime($startTime){
- $this->params['startTime'] = $startTime;
- }
- public function getStartTime(){
- return $this->startTime;
- }
-
- private $endTime;
-
- public function setEndTime($endTime){
- $this->params['endTime'] = $endTime;
- }
- public function getEndTime(){
- return $this->endTime;
- }
-
- private $fields;
-
- public function setFields($fields){
- $this->params['fields'] = $fields;
- }
- public function getFields(){
- return $this->fields;
- }
-
- private $orderId;
-
- public function setOrderId($orderId){
- $this->params['orderId'] = $orderId;
- }
- public function getOrderId(){
- return $this->orderId;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|