11 lines
353 B
11 lines
353 B
6 years ago
|
class ExerciseStandardAnswer < ApplicationRecord
|
||
|
#标准答案
|
||
|
belongs_to :exercise_question, optional:true
|
||
|
belongs_to :exercise_choice, optional:true
|
||
|
|
||
|
scope :find_standard_answer_custom, lambda {|k,v| where("#{k} = ?",v)} #根据传入的参数查找问题
|
||
|
scope :standard_by_ids, lambda { |s| where(exercise_choice_id: s) }
|
||
|
|
||
|
|
||
|
end
|