mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 22:20:57 +08:00
11 lines
212 B
PHP
11 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class ExamProgress extends NexusModel
|
|
{
|
|
protected $fillable = ['exam_user_id', 'exam_id', 'uid', 'index', 'init_value', 'value', 'torrent_id'];
|
|
|
|
public $timestamps = true;
|
|
}
|