|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @remark :
|
|
|
|
* @name :Comment.php
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2024/9/9 14:53
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models\Comment;
|
|
|
|
|
|
|
|
use App\Models\Base;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :評論
|
|
|
|
* @name :Comment
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2024/9/9 14:54
|
|
|
|
*/
|
|
|
|
class Comment extends Base
|
|
|
|
{
|
|
|
|
protected $table = 'gl_comment';
|
|
|
|
//连接数据库
|
|
|
|
protected $connection = 'custom_mysql';
|
|
|
|
} |
...
|
...
|
|