|
|
|
@ -24,7 +24,7 @@ class Course < ActiveRecord::Base
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
attr_accessible :code, :extra, :name, :state, :tea_id, :time , :location, :state, :term, :password,:is_public,:description,:class_period, :open_student, :enterprise_name, :is_delete, :syllabus_id
|
|
|
|
|
attr_accessible :code, :extra, :name, :state, :tea_id, :time , :location, :state, :term, :password,:is_public,:description,:class_period, :open_student, :enterprise_name, :is_delete, :syllabus_id, :end_time, :end_term
|
|
|
|
|
#belongs_to :project, :class_name => 'Course', :foreign_key => :extra, primary_key: :identifier
|
|
|
|
|
belongs_to :teacher, :class_name => 'User', :foreign_key => :tea_id # 定义一个方法teacher,该方法通过tea_id来调用User表
|
|
|
|
|
belongs_to :school, :class_name => 'School', :foreign_key => :school_id #定义一个方法school,该方法通过school_id来调用School表
|
|
|
|
@ -96,7 +96,9 @@ class Course < ActiveRecord::Base
|
|
|
|
|
'class_period',
|
|
|
|
|
'open_student',
|
|
|
|
|
'is_delete',
|
|
|
|
|
'syllabus_id'
|
|
|
|
|
'syllabus_id',
|
|
|
|
|
'end_time',
|
|
|
|
|
'end_term'
|
|
|
|
|
|
|
|
|
|
acts_as_customizable
|
|
|
|
|
|
|
|
|
|