91 lines
1.4 KiB
PHP
91 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Bean\Model\Wallet\Platform;
|
|
|
|
use App\Bean\Model\Base\BaseBean;
|
|
|
|
class WalletPlatformBean extends BaseBean
|
|
{
|
|
|
|
protected $id;
|
|
protected $name;
|
|
protected $code;
|
|
protected $appid;
|
|
protected $secret;
|
|
protected $notify_ip;
|
|
protected $created_at;
|
|
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setId($id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName($name): void
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
public function getCode()
|
|
{
|
|
return $this->code;
|
|
}
|
|
|
|
public function setCode($code): void
|
|
{
|
|
$this->code = $code;
|
|
}
|
|
|
|
public function getAppid()
|
|
{
|
|
return $this->appid;
|
|
}
|
|
|
|
public function setAppid($appid): void
|
|
{
|
|
$this->appid = $appid;
|
|
}
|
|
|
|
public function getSecret()
|
|
{
|
|
return $this->secret;
|
|
}
|
|
|
|
public function setSecret($secret): void
|
|
{
|
|
$this->secret = $secret;
|
|
}
|
|
|
|
public function getNotifyIp()
|
|
{
|
|
return $this->notify_ip;
|
|
}
|
|
|
|
public function setNotifyIp($notify_ip): void
|
|
{
|
|
$this->notify_ip = $notify_ip;
|
|
}
|
|
|
|
public function getCreatedAt()
|
|
{
|
|
return $this->created_at;
|
|
}
|
|
|
|
public function setCreatedAt($created_at): void
|
|
{
|
|
$this->created_at = $created_at;
|
|
}
|
|
|
|
|
|
|
|
}
|