InquiryOther.php
370 字节
<?php
namespace App\Models\Inquiry;
use App\Models\Base;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class InquiryOther
* @package App\Models\Inquiry
* @author zbj
* @date 2023/11/29
*/
class InquiryOther extends Base
{
use SoftDeletes;
//连接数据库
protected $connection = 'custom_mysql';
protected $table = 'gl_inquiry_other';
}