Files
cycle_api/app/Models/Comment/PostCommentModel.php
2024-03-03 09:39:06 +08:00

24 lines
442 B
PHP

<?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',
];
}