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