UpdateNotify.php
464 字节
<?php
/**
* @remark :通知更新
* @name :UpdateNotify.php
* @author :lyh
* @method :post
* @time :2023/7/31 15:10
*/
namespace App\Models\Com;
use App\Models\Base;
class UpdateNotify extends Base
{
protected $table = 'gl_update_notify';
//连接数据库
protected $connection = 'custom_mysql';
const TYPE_MASTER = 1;//主站
const TYPE_MINOR = 2;//小语种
const PAGE_ALL= 1;//所有
const PAGE_SINGLE = 2;//按需
}