2021-04-19 20:13:21 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
class ExamProgress extends NexusModel
|
|
|
|
|
{
|
2021-06-11 20:32:57 +08:00
|
|
|
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
|
|
|
}
|