UpdateMasterWebsiteModel.php
549 字节
<?php
namespace App\Models\Project;
use Illuminate\Database\Eloquent\Model;
/**
* @method static where(string $string, int $param)
* @method static find($id)
* @method static get()
* @method static insertGetId()
* @method static create(array $array)
* @method static offset(float|int $param)
* @method static select(string $string)
* @method static orderBy(string $string, string $string1)
*/
class UpdateMasterWebsiteModel extends Model
{
protected $connection = "custom_mysql";
protected $table = 'gl_update_master_website';
}