| 123456789101112131415161718 | <?php/** * Created by PhpStorm. * User: Administrator * Date: 2019/4/23 * Time: 19:00 */namespace App\Transfer;use Illuminate\Database\Eloquent\Model;class Help extends Model{    protected $connection = "transfer_center";    protected $table = "qs_help";    protected $guarded = [];}
 |