Data.php 290 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Data.php
  4. * 文件描述
  5. * Created on 2020/8/22 16:33
  6. * Create by Wpeishi
  7. */
  8. namespace App\Models;
  9. class Data extends BaseModel
  10. {
  11. //
  12. protected $table = 'vr_data';
  13. protected $fillable = [
  14. 'type', 'website_id', 'time_type', 'count_num','time'
  15. ];
  16. }