85 lines
1.4 KiB
PHP
85 lines
1.4 KiB
PHP
<?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;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|