80 lines
1.4 KiB
PHP
80 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Bean\Model\Wallet\Wallet;
|
|
|
|
use App\Bean\Model\Base\BaseBean;
|
|
|
|
class WalletPlatformBindBean extends BaseBean
|
|
{
|
|
|
|
protected $id;
|
|
protected $platform_id;
|
|
protected $wallet_address_id;
|
|
protected $currency_code;
|
|
protected $uid;
|
|
protected $created_at;
|
|
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setId($id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getPlatformId()
|
|
{
|
|
return $this->platform_id;
|
|
}
|
|
|
|
public function setPlatformId($platform_id): void
|
|
{
|
|
$this->platform_id = $platform_id;
|
|
}
|
|
|
|
public function getWalletAddressId()
|
|
{
|
|
return $this->wallet_address_id;
|
|
}
|
|
|
|
public function setWalletAddressId($wallet_address_id): void
|
|
{
|
|
$this->wallet_address_id = $wallet_address_id;
|
|
}
|
|
|
|
public function getCurrencyCode()
|
|
{
|
|
return $this->currency_code;
|
|
}
|
|
|
|
public function setCurrencyCode($currency_code): void
|
|
{
|
|
$this->currency_code = $currency_code;
|
|
}
|
|
|
|
public function getUid()
|
|
{
|
|
return $this->uid;
|
|
}
|
|
|
|
public function setUid($uid): void
|
|
{
|
|
$this->uid = $uid;
|
|
}
|
|
|
|
public function getCreatedAt()
|
|
{
|
|
return $this->created_at;
|
|
}
|
|
|
|
public function setCreatedAt($created_at): void
|
|
{
|
|
$this->created_at = $created_at;
|
|
}
|
|
|
|
|
|
|
|
}
|