ExamPaperModel.php 480 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ExamPaperModel extends BaseModel
  5. {
  6. protected $table = 'exam_papers';
  7. public $timestamps = false;
  8. protected $guarded = [];
  9. protected $fillable = [
  10. 'type',
  11. 'name',
  12. 'scene_type',
  13. 'subject_id',
  14. 'score_total',
  15. 'topic_count',
  16. 'is_charge',
  17. 'status',
  18. 'sort',
  19. 'remark',
  20. 'mark',
  21. 'create_time'
  22. ];
  23. }