122 lines
2.3 KiB
PHP
122 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Bean\Model\Api\Wallet;
|
|
|
|
use App\Bean\Model\Base\BaseBean;
|
|
|
|
class CustomerWalletBalanceBean extends BaseBean
|
|
{
|
|
protected $id;
|
|
protected $uid;
|
|
protected $currency_code;
|
|
protected $total_amount;
|
|
protected $frozen_amount;
|
|
protected $available_amount;
|
|
protected $security_amount;
|
|
protected $recharge_wallet_addr;
|
|
protected $created_at;
|
|
protected $updated_at;
|
|
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setId($id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getUid()
|
|
{
|
|
return $this->uid;
|
|
}
|
|
|
|
public function setUid($uid): void
|
|
{
|
|
$this->uid = $uid;
|
|
}
|
|
|
|
public function getCurrencyCode()
|
|
{
|
|
return $this->currency_code;
|
|
}
|
|
|
|
public function setCurrencyCode($currency_code): void
|
|
{
|
|
$this->currency_code = $currency_code;
|
|
}
|
|
|
|
public function getTotalAmount()
|
|
{
|
|
return $this->total_amount;
|
|
}
|
|
|
|
public function setTotalAmount($total_amount): void
|
|
{
|
|
$this->total_amount = $total_amount;
|
|
}
|
|
|
|
public function getFrozenAmount()
|
|
{
|
|
return $this->frozen_amount;
|
|
}
|
|
|
|
public function setFrozenAmount($frozen_amount): void
|
|
{
|
|
$this->frozen_amount = $frozen_amount;
|
|
}
|
|
|
|
public function getAvailableAmount()
|
|
{
|
|
return $this->available_amount;
|
|
}
|
|
|
|
public function setAvailableAmount($available_amount): void
|
|
{
|
|
$this->available_amount = $available_amount;
|
|
}
|
|
|
|
public function getSecurityAmount()
|
|
{
|
|
return $this->security_amount;
|
|
}
|
|
|
|
public function setSecurityAmount($security_amount): void
|
|
{
|
|
$this->security_amount = $security_amount;
|
|
}
|
|
|
|
public function getRechargeWalletAddr()
|
|
{
|
|
return $this->recharge_wallet_addr;
|
|
}
|
|
|
|
public function setRechargeWalletAddr($recharge_wallet_addr): void
|
|
{
|
|
$this->recharge_wallet_addr = $recharge_wallet_addr;
|
|
}
|
|
|
|
public function getCreatedAt()
|
|
{
|
|
return $this->created_at;
|
|
}
|
|
|
|
public function setCreatedAt($created_at): void
|
|
{
|
|
$this->created_at = $created_at;
|
|
}
|
|
|
|
public function getUpdatedAt()
|
|
{
|
|
return $this->updated_at;
|
|
}
|
|
|
|
public function setUpdatedAt($updated_at): void
|
|
{
|
|
$this->updated_at = $updated_at;
|
|
}
|
|
|
|
|
|
}
|