26 lines
461 B
PHP
26 lines
461 B
PHP
<?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;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|