2015-05-19 09:49:26 +08:00
|
|
|
#老师布置的作业表
|
2015-05-19 09:56:08 +08:00
|
|
|
#homework_type: 1:普通作业;2:匿评作业;3:编程作业
|
2015-05-19 09:49:26 +08:00
|
|
|
class HomeworkCommon < ActiveRecord::Base
|
|
|
|
attr_accessible :name, :user_id, :description, :publish_time, :end_time, :homework_type, :late_penalty, :course_id
|
|
|
|
|
|
|
|
belongs_to :course
|
|
|
|
belongs_to :user
|
2015-05-19 09:56:08 +08:00
|
|
|
has_many :homework_detail_manuals, :dependent => :destroy
|
2015-05-19 09:49:26 +08:00
|
|
|
end
|