MiniprogramUserVip.php 250 B

1234567891011121314
  1. <?php
  2. namespace Modules\Channel\Models;
  3. class MiniprogramUserVip extends BaseModel
  4. {
  5. protected $table = 'miniprogram_user_vips';
  6. protected $fillable = [
  7. 'id', 'uid', 'start_time', 'end_time', 'created_at', 'updated_at',
  8. ];
  9. }