推拉函数与queue

This commit is contained in:
cano
2024-03-03 09:39:06 +08:00
parent f5f7168009
commit 66d88ea2b3
15 changed files with 476 additions and 108 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace App\Models\Comment;
use App\Exceptions\ModelException;
use App\Models\Base\BaseModel;
use Illuminate\Database\Eloquent\SoftDeletes;
class PostCommentModel extends BaseModel
{
use SoftDeletes;
protected $table = 'customer_post_comment';
protected $primaryKey = 'id';
protected $fillable = [
'id',
'pid',
'uid',
'content',
'created_at',
'deleted_at',
];
}