| 12345678910111213141516171819202122232425262728 | <?php/** * Created by PhpStorm. * User: Administrator * Date: 2019/4/25 * Time: 10:16 */namespace App\Transfer;use Illuminate\Database\Eloquent\Model;class CompanyStatistics extends Model{    protected $connection = "transfer_center";    protected $table = "qs_company_statistics";    protected $guarded = [];    public function companys()    {        return $this->belongsTo(CompanyProfile::class, 'uid', 'uid');    }    public function companyProfile()    {        return $this->belongsTo(CompanyProfile::class, 'comid');    }}
 |