Translate.php
377 字节
<?php
/**
* @remark :
* @name :Translate.php
* @author :lyh
* @method :post
* @time :2024/1/12 9:38
*/
namespace App\Models\WebSetting;
use App\Models\Base;
class Translate extends Base
{
protected $table = 'gl_translate';
//连接数据库
protected $connection = 'custom_mysql';
public static $textType = 1;
public static $imageType = 2;
}