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 CourseMemberAttendance < ApplicationRecord
|
|
|
|
|
# attendance_mode :1 二维码签到,2 数字签到,3 老师签到
|
|
|
|
|
# attendance_status :1 正常签到,2 请假,0 旷课
|
|
|
|
|
belongs_to :course_member
|
|
|
|
|
belongs_to :user
|
|
|
|
|
belongs_to :course
|
|
|
|
|
belongs_to :course_attendance
|
|
|
|
|
belongs_to :course_group
|
|
|
|
|
end
|