| 12345678910111213141516171819 | <?php/** * Created by PhpStorm. * User: Administrator * Date: 2019/4/23 * Time: 10:24 */namespace App\Transfer;use Illuminate\Database\Eloquent\Model;class PersonalFavorite extends Model{    protected $connection = "transfer_center";    protected $table = "qs_personal_favorites";    protected $primaryKey ="did";    protected $guarded = [];}
 |