change struct

This commit is contained in:
cano
2024-03-25 06:29:56 +08:00
parent 489090382f
commit 6ce37d789f
11 changed files with 128 additions and 81 deletions

View File

@ -0,0 +1,37 @@
<?php
namespace App\Bean\Queue\Api;
use App\Bean\Queue\QueueBaseBean;
class QueueAddPostBean extends QueueBaseBean
{
const QUEUE_NAME = 'queue_add_post';
protected $id;
protected $type;
public function getId()
{
return $this->id;
}
public function setId($id): void
{
$this->id = $id;
}
public function getType()
{
return $this->type;
}
public function setType($type): void
{
$this->type = $type;
}
}