1234567891011121314151617181920 |
- <?php
- /**
- * Data.php
- * 文件描述
- * Created on 2020/8/22 16:33
- * Create by Wpeishi
- */
- namespace App\Models;
- class Data extends BaseModel
- {
- //
- protected $table = 'vr_data';
- protected $fillable = [
- 'type', 'website_id', 'time_type', 'count_num','time'
- ];
- }
|