using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 考试计划项 /// public class TestPlanItem { /// /// 考试计划ID /// public string TestPlanId { get; set; } /// /// 培训计划ID /// public string TrainingPlanId { get; set; } /// /// 考试计划编号 /// public string TestPlanCode { get; set; } /// /// 考试计划名称 /// public string TestPlanName { get; set; } /// /// 项目ID /// public string ProjectId { get; set; } /// /// 计划人 /// public string TestPlanManId { get; set; } /// /// 计划人姓名 /// public string TestPlanManName { get; set; } /// /// 制定时间 /// public string TestPlanDate { get; set; } /// /// 扫码开始时间 /// public string TestStartTime { get; set; } /// /// 扫码结束时间 /// public string TestEndTime { get; set; } /// /// 考试时长 /// public int Duration { get; set; } /// /// 单选题分值 /// public int SValue { get; set; } /// /// 多选题分值 /// public int MValue { get; set; } /// /// 判断题分值 /// public int JValue { get; set; } /// /// 总分数 /// public int TotalScore { get; set; } /// /// 考题数量 /// public int QuestionCount { get; set; } /// /// 考试地点 /// public string TestPalce { get; set; } /// /// 考试单位ID /// public string UnitIds { get; set; } /// /// 考试单位名称 /// public string UnitNames { get; set; } /// /// 考试岗位ID /// public string WorkPostIds { get; set; } /// /// 考试岗位名称 /// public string WorkPostNames { get; set; } /// /// 考试部门ID /// public string DepartIds { get; set; } /// /// 考试部门名称 /// public string DepartNames { get; set; } /// /// 考试二维码 /// public string QRCodeUrl { get; set; } ///// ///// 考试类型 ///// //public string TestType //{ // get; // set; //} /// /// 状态 /// public string States { get; set; } /// /// 实际结束时间 /// public string ActualTime { get; set; } /// /// 考卷设置项 /// public List TestPlanTrainingItems { get; set; } /// /// 考生记录 /// public List TestRecordItems { get; set; } /// /// 培训类型ID /// public string TrainTypeId { get; set; } public string TrainTypeName { get; set; } } }