wallet tron transactions

This commit is contained in:
cano
2024-03-25 06:15:36 +08:00
parent 4b8f205e86
commit 489090382f
83 changed files with 5424 additions and 1343 deletions

View File

@ -0,0 +1,69 @@
<?php
namespace App\Bean\Queue\Wallet;
use App\Bean\Queue\QueueBaseBean;
class QueueWalletPlatformTransactionBean extends QueueBaseBean
{
const QUEUE_NAME = 'queue_wallet_platform_transaction';
protected $wallet_id;
protected $wallet_transaction_id;
protected $block_transaction_id;
protected $amount;
protected $type;
public function getWalletId()
{
return $this->wallet_id;
}
public function setWalletId($wallet_id): void
{
$this->wallet_id = $wallet_id;
}
public function getWalletTransactionId()
{
return $this->wallet_transaction_id;
}
public function setWalletTransactionId($wallet_transaction_id): void
{
$this->wallet_transaction_id = $wallet_transaction_id;
}
public function getBlockTransactionId()
{
return $this->block_transaction_id;
}
public function setBlockTransactionId($block_transaction_id): void
{
$this->block_transaction_id = $block_transaction_id;
}
public function getAmount()
{
return $this->amount;
}
public function setAmount($amount): void
{
$this->amount = $amount;
}
public function getType()
{
return $this->type;
}
public function setType($type): void
{
$this->type = $type;
}
}