Files
nexusphp/app/Models/ExamProgress.php
xiaomlove 7cfde3f95b show-exam
2021-04-25 21:28:58 +08:00

11 lines
198 B
PHP

<?php
namespace App\Models;
class ExamProgress extends NexusModel
{
protected $fillable = ['exam_user_id', 'exam_id', 'uid', 'index', 'value', 'torrent_id'];
public $timestamps = true;
}