BCustomTemplate.php
312 字节
<?php
namespace App\Models\Template;
use App\Models\Base;
class BCustomTemplate extends Base
{
protected $table = 'gl_web_custom_template';
//连接数据库
protected $connection = 'custom_mysql';
const NOT_FOUND_PAGE_URL = '404';
const STATUS_ACTIVE = 1;
const STATUS_DRAFT = 0;
}