| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace KplOpenWfpVscMakeCertCallback;
- class Cert{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.kpl.Cert";
- }
-
- private $certId;
-
- public function setCertId($certId){
- $this->params['certId'] = $certId;
- }
- public function getCertId(){
- return $this->certId;
- }
-
- private $cardNum;
-
- public function setCardNum($cardNum){
- $this->params['cardNum'] = $cardNum;
- }
- public function getCardNum(){
- return $this->cardNum;
- }
-
- private $pwd;
-
- public function setPwd($pwd){
- $this->params['pwd'] = $pwd;
- }
- public function getPwd(){
- return $this->pwd;
- }
-
- private $effectiveTime;
-
- public function setEffectiveTime($effectiveTime){
- $this->params['effectiveTime'] = $effectiveTime;
- }
- public function getEffectiveTime(){
- return $this->effectiveTime;
- }
-
- private $expiryTime;
-
- public function setExpiryTime($expiryTime){
- $this->params['expiryTime'] = $expiryTime;
- }
- public function getExpiryTime(){
- return $this->expiryTime;
- }
-
- private $leftTimes;
-
- public function setLeftTimes($leftTimes){
- $this->params['leftTimes'] = $leftTimes;
- }
- public function getLeftTimes(){
- return $this->leftTimes;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|