wallet tron transactions
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
namespace App\Bean\Queue\Wallet;
|
||||
|
||||
use App\Bean\Queue\QueueBaseBean;
|
||||
|
||||
class QueueWalletPlatformWithdrawTransferBean extends QueueBaseBean
|
||||
{
|
||||
const QUEUE_NAME = 'queue_wallet_platform_withdraw_transfer';
|
||||
|
||||
protected $transaction_id;
|
||||
|
||||
public function getTransactionId()
|
||||
{
|
||||
return $this->transaction_id;
|
||||
}
|
||||
|
||||
public function setTransactionId($transaction_id): void
|
||||
{
|
||||
$this->transaction_id = $transaction_id;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user