推拉函数与queue
This commit is contained in:
23
app/Models/Comment/PostCommentModel.php
Normal file
23
app/Models/Comment/PostCommentModel.php
Normal 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',
|
||||
];
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user