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