| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- namespace UnionOpenOauthTestQuery;
- class OauthTestReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.auth.OauthReq";
- }
-
- private $unionId;
-
- public function setUnionId($unionId){
- $this->params['unionId'] = $unionId;
- }
- public function getUnionId(){
- return $this->unionId;
- }
-
- private $key;
-
- public function setKey($key){
- $this->params['key'] = $key;
- }
- public function getKey(){
- return $this->key;
- }
-
- private $unionType;
-
- public function setUnionType($unionType){
- $this->params['unionType'] = $unionType;
- }
- public function getUnionType(){
- return $this->unionType;
- }
-
- 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 $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- private $jcommand;
-
- public function setJcommand($jcommand){
- $this->params['jcommand'] = $jcommand;
- }
- public function getJcommand(){
- return $this->jcommand;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|