| 1234567891011121314151617181920 | <?php/** * Created by PhpStorm. * User: Administrator * Date: 2019/4/8 * Time: 15:29 */namespace App\Transfer;use Illuminate\Database\Eloquent\Model;class CompanyProfile extends Model{    protected $connection = "transfer_center";    protected $table = "qs_company_profile";    protected $guarded = [];}
 |