You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
class Output < ActiveRecord::Base
|
|
|
|
|
# attr_accessible :title, :body
|
|
|
|
|
# actual_output 编程题:实际输出, 选择题: 用户提交的答案(如: 014 对应用户选择为A B E)
|
|
|
|
|
# compile_success 1 表示程序未报错,有正常输出, 0.表示程序抛异常了,报错!
|
|
|
|
|
default_scope :order => 'query_index desc'
|
|
|
|
|
belongs_to :game
|
|
|
|
|
#belongs_to :challenge_choose
|
|
|
|
|
end
|