UserVipLimit.php 214 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. class UserVipLimit extends BaseModel
  4. {
  5. protected $table = 'users_vip_limit';
  6. public $timestamps = false;
  7. protected $fillable = ['user_id', 'weixin','user','dynamic'];
  8. }