add exam index init value

This commit is contained in:
xiaomlove
2021-06-11 02:21:42 +08:00
parent 3bb15d6a41
commit 6719fb494f
8 changed files with 141 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Models;
class ExamIndexInitValue extends NexusModel
{
protected $fillable = ['uid', 'exam_id', 'index', 'value',];
public $timestamps = true;
}