UpdateNotify.php
409 字节
<?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 = 'master_website';
const TYPE_MINOR = 'minor_languages';
}