RomeGift.php 234 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class RomeGift extends Model
  5. {
  6. protected $table = 'love_live_rome_gift';
  7. protected $fillable = [
  8. 'uid', 'lid','gid', 'rose','fuid','level'
  9. ];
  10. }