wallet tron transactions
This commit is contained in:
79
app/Bean/Model/Wallet/Tron/WalletTronBlockBean.php
Normal file
79
app/Bean/Model/Wallet/Tron/WalletTronBlockBean.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
|
||||
namespace App\Bean\Model\Wallet\Tron;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class WalletTronBlockBean extends BaseBean
|
||||
{
|
||||
|
||||
protected $id;
|
||||
protected $status;
|
||||
protected $block_id;
|
||||
protected $block_num;
|
||||
protected $block_timestamp;
|
||||
protected $created_at;
|
||||
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function setId($id): void
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
|
||||
public function getStatus()
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
public function setStatus($status): void
|
||||
{
|
||||
$this->status = $status;
|
||||
}
|
||||
|
||||
public function getBlockId()
|
||||
{
|
||||
return $this->block_id;
|
||||
}
|
||||
|
||||
public function setBlockId($block_id): void
|
||||
{
|
||||
$this->block_id = $block_id;
|
||||
}
|
||||
|
||||
public function getBlockNum()
|
||||
{
|
||||
return $this->block_num;
|
||||
}
|
||||
|
||||
public function setBlockNum($block_num): void
|
||||
{
|
||||
$this->block_num = $block_num;
|
||||
}
|
||||
|
||||
public function getBlockTimestamp()
|
||||
{
|
||||
return $this->block_timestamp;
|
||||
}
|
||||
|
||||
public function setBlockTimestamp($block_timestamp): void
|
||||
{
|
||||
$this->block_timestamp = $block_timestamp;
|
||||
}
|
||||
|
||||
public function getCreatedAt()
|
||||
{
|
||||
return $this->created_at;
|
||||
}
|
||||
|
||||
public function setCreatedAt($created_at): void
|
||||
{
|
||||
$this->created_at = $created_at;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user