UserVipLimit.php 251 B

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