42 lines
614 B
PHP
42 lines
614 B
PHP
<?php
|
|
namespace App\Bean\Queue\Api;
|
|
|
|
use App\Bean\Queue\QueueBaseBean;
|
|
|
|
class QueueUserActiveStatusBean extends QueueBaseBean
|
|
{
|
|
const QUEUE_NAME = 'queue_user_active_status';
|
|
|
|
protected $uid;
|
|
protected $queue_created_at;
|
|
|
|
public function getUid()
|
|
{
|
|
return $this->uid;
|
|
}
|
|
|
|
public function setUid($uid): void
|
|
{
|
|
$this->uid = $uid;
|
|
}
|
|
|
|
public function getQueueCreatedAt()
|
|
{
|
|
return $this->queue_created_at;
|
|
}
|
|
|
|
public function setQueueCreatedAt($queue_created_at): void
|
|
{
|
|
$this->queue_created_at = $queue_created_at;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|