mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-13 11:50:53 +08:00
9 lines
138 B
PHP
9 lines
138 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class ExamProgress extends NexusModel
|
|
{
|
|
protected $fillable = ['exam_id', 'uid', 'type_id', 'value'];
|
|
}
|