| | |
| | | |
| | | |
| | | /** |
| | | * 学员评估分类实体类 |
| | | * 学员评估分类实体类 |
| | | * |
| | | * @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"; |
| | | |
| | | } |