123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel
- {
- public enum OnlineTestStatus
- {
- 考试未开始 = 0,
- 考试已开始,
- 评卷,
- 公开成绩
- }
- public enum Examinee_ExamStatus
- {
- 考试未开始,
- 考试已结束,
- 不能参加该场考试,
- 登录次数已大于规定的次数,
- 考试中,
- 已交卷
- }
- }
|