Files
nexusphp/app/Models/ExamProgress.php

11 lines
212 B
PHP
Raw Normal View History

2021-04-19 20:13:21 +08:00
<?php
namespace App\Models;
class ExamProgress extends NexusModel
{
protected $fillable = ['exam_user_id', 'exam_id', 'uid', 'index', 'init_value', 'value', 'torrent_id'];
2021-04-25 02:12:14 +08:00
public $timestamps = true;
2021-04-19 20:13:21 +08:00
}