Files
nexusphp/app/Models/ExamIndexInitValue.php

11 lines
175 B
PHP
Raw Normal View History

2021-06-11 02:21:42 +08:00
<?php
namespace App\Models;
class ExamIndexInitValue extends NexusModel
{
protected $fillable = ['uid', 'exam_id', 'index', 'value',];
public $timestamps = true;
}