*/ protected $fillable = [ 'dept_id', 'title', 'message', 'is_enable' ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'id' => 'integer', 'is_enable' => 'integer', ]; /** * 科室分类 * @return BelongsTo */ public function department(): BelongsTo { return $this->belongsTo(Department::class, 'dept_id', 'dept_id'); } }