| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class ExamSubjectsModel extends BaseModel
- {
- protected $table = 'exam_subjects';
- public $timestamps = false;
- protected $fillable = [
- 'subject_name',
- 'pid',
- 'type',
- 'attr_type',
- 'description',
- 'icon',
- 'sort',
- 'create_time',
- 'update_time',
- 'status',
- 'mark'
- ];
- }
|