wallet tron transactions
This commit is contained in:
84
app/Bean/Queue/Wallet/QueueNotifyToPlatformBean.php
Normal file
84
app/Bean/Queue/Wallet/QueueNotifyToPlatformBean.php
Normal file
@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
namespace App\Bean\Queue\Wallet;
|
||||
|
||||
use App\Bean\Queue\QueueBaseBean;
|
||||
|
||||
class QueueNotifyToPlatformBean extends QueueBaseBean
|
||||
{
|
||||
const QUEUE_NAME = 'queue_notify_to_platform';
|
||||
|
||||
const TYPE_WITHDRAW = 1;
|
||||
|
||||
protected $type;
|
||||
protected $sn;
|
||||
protected $amount;
|
||||
protected $currency_code;
|
||||
protected $status;
|
||||
protected $platform_id;
|
||||
|
||||
public function getPlatformId()
|
||||
{
|
||||
return $this->platform_id;
|
||||
}
|
||||
|
||||
public function setPlatformId($platform_id): void
|
||||
{
|
||||
$this->platform_id = $platform_id;
|
||||
}
|
||||
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
|
||||
public function setType($type): void
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
|
||||
public function getSn()
|
||||
{
|
||||
return $this->sn;
|
||||
}
|
||||
|
||||
public function setSn($sn): void
|
||||
{
|
||||
$this->sn = $sn;
|
||||
}
|
||||
|
||||
public function getAmount()
|
||||
{
|
||||
return $this->amount;
|
||||
}
|
||||
|
||||
public function setAmount($amount): void
|
||||
{
|
||||
$this->amount = $amount;
|
||||
}
|
||||
|
||||
public function getCurrencyCode()
|
||||
{
|
||||
return $this->currency_code;
|
||||
}
|
||||
|
||||
public function setCurrencyCode($currency_code): void
|
||||
{
|
||||
$this->currency_code = $currency_code;
|
||||
}
|
||||
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
public function setStatus($status): void
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user