using Edu.Common.Enum.Exam;
using Edu.Model.Entity.Exam;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Exam
{
///
/// 试卷发布视图实体类
///
public class RB_Examination_Publish_ViewModel : RB_Examination_Publish
{
///
/// 是否查询所有
///
public int IsQueryAll { get; set; }
///
/// 考试学员列表
///
public List StudentList { get; set; }
///
/// 试卷名称
///
public string PaperName { get; set; }
///
/// 考生人数
///
public int StudentCount { get; set; }
///
/// 查询id
///
public string QPublishIds { get; set; }
///
/// 查询不正常的数据
///
public int IsQNotNormal { get; set; }
///
/// 学生id
///
public int GuestId { get; set; }
///
/// 考试状态(见枚举)
///
public ExamTestStatusEnum ExamStatus { get; set; }
///
/// 考试状态
///
public string ExamStatusStr { get; set; }
///
/// 图片列表
///
public List PicList
{
get
{
List list = new List();
if (!string.IsNullOrEmpty(this.PublishPic))
{
list = Common.Plugin.JsonHelper.DeserializeObject>(this.PublishPic);
}
return list;
}
}
///
/// 学员考试表编号
///
public int Exam_Student_Id { get; set; }
///
/// 账号编号
///
public string QAccountIds { get; set; }
///
/// 查询考试状态【1-未开始,2-进行中,3-已结束】
///
public int QTestStatus { get; set; }
///
/// 开始时间
///
public string QStartTime { get; set; }
///
/// 结束试卷
///
public string QEndTime { get; set; }
}
}