| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class ExamPaperModel extends BaseModel
- {
- protected $table = 'exam_papers';
- public $timestamps = false;
- protected $guarded = [];
- protected $fillable = [
- 'type',
- 'name',
- 'scene_type',
- 'subject_id',
- 'score_total',
- 'topic_count',
- 'is_charge',
- 'status',
- 'sort',
- 'remark',
- 'mark',
- 'create_time'
- ];
- }
|