| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace UnionOpenCpChannelDefaultGet;
- class CpDefaultChannelGetReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.cp.CpDefaultChannelReq";
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- private $id;
-
- public function setId($id){
- $this->params['id'] = $id;
- }
- public function getId(){
- return $this->id;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|