8 lines
187 B
Ruby
8 lines
187 B
Ruby
|
#学生作品匿评分配表
|
||
|
class StudentWorksEvaluationDistribution < ActiveRecord::Base
|
||
|
attr_accessible :student_work_id, :user_id
|
||
|
|
||
|
belongs_to :student_work
|
||
|
belongs_to :user
|
||
|
end
|