派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.qxueyou.scc.school.model;
 
 
/**
 * 学员评估分类实体类
 * 
 * @author zhiyong
 *
 */
public class StudentEvaCategory {
    
    /** 学习态度  */
    public static final String STUDENT_ATTRIBUTE ="student_attribute";
    
    /** 学习进度*/
    public static final String STUDENT_SCHEDULE ="student_schedule";    
    
    /** 做题(考试)结果 */
    public static final String EXAM_RESULT ="exam_result";
    
    /** 出勤率  */
    public static final String ATTENDANCE ="attendance";
    
    /** 签到排名 */
    public static final String SIGN_RANK ="sign_rank";
    
    /** 家庭作业提交及时性  */
    public static final String HOMEWORK_TIMELINESS ="homework_timeliness";
    
    /** 家庭作业完成度  */
    public static final String HOMEWORK_COMPLETENESS ="homework_completeness";
    
    /** 家庭作业答题分数  */
    public static final String HOMEWORK_SCORE ="homework_score";
    
}