class StaAll < ApplicationRecord # t.integer :school_id 学校ID # t.integer :tea_count 老师数 # t.integer :stu_count 学生数 # t.integer :active_users_count 活跃用户数(3个月内有登录) # t.integer :courses_count 总课堂数 # t.integer :curr_courses_count 正在进行的课堂数 # t.integer :homw_shixuns_count 实训作业数 # t.integer :homw_other_count 其它类型作业数 # t.integer :sources_count 资源数 # t.integer :videos_count 视频总个数 # t.integer :shixuns_count 制作实训总数 # t.integer :myshixuns_count 挑战实训总数 # t.integer :mys_passed_count 通关的实训总数 # t.integer :games_count 挑战的总关卡数 # t.integer :games_passed_count 通关的总关卡数 # t.integer :build_count 评测总数 belongs_to :school end