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.
educoder/app/models/evaluate_record.rb

15 lines
617 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 字段说明:
# consume_time总耗时包括前端发出请求到最后前端显示效果
# git_pull中间层pull代码耗时
# create_pod创建pod耗时
# pod_executepod执行时间耗时也就代码执行耗时是各个测试集的总耗时
# test_casesoutpus表中存储及处理测试集的时间耗时
# brige中间层总耗时
# return_back回调耗时从中间层发送请求到educoder所耗时间
class EvaluateRecord < ApplicationRecord
default_scope { order("evaluate_records.id desc") }
belongs_to :game
belongs_to :shixun
belongs_to :user
end