|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @remark :
|
|
|
|
* @name :BTemplateCom.php
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2024/5/7 10:13
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models\Template;
|
|
|
|
|
|
|
|
use App\Models\Base;
|
|
|
|
|
|
|
|
class BTemplateCom extends Base
|
|
|
|
{
|
|
|
|
protected $table = 'gl_web_template_com';
|
|
|
|
//连接数据库
|
|
|
|
protected $connection = 'custom_mysql';
|
|
|
|
} |
...
|
...
|
|