80 lines
1.3 KiB
PHP
80 lines
1.3 KiB
PHP
<?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;
|
|
}
|
|
|
|
|
|
|
|
}
|