[ 1 => '员工参与数', 2 => '干部培训数', ], ]; /** * 获取类型文本 */ public function getTypeTextAttribute() { return self::$intToString['type'][$this->type] ?? ''; } /** * 关联课程类型 */ public function courseType() { return $this->hasOne(CourseType::class, 'id', 'course_type_id'); } }