123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel;
- namespace EMISOnline.ViewModel.Coursework
- {
- public class CourseworkAddView
- {
- public CourseworkAddView()
- {
- PaperData = new Dictionary<string, object>();
- }
- public decimal id { get; set; }
- public Nullable<decimal> test_paper_id { get; set; }
- /// <summary>
- /// 试卷名称
- /// </summary>
- [Required]
- [DisplayName("试卷名称")]
- public string test_paper_name { get; set; }
- public string status { get; set; }
- public string CoursematerialName { get; set; }
- /// <summary>
- /// 所属课程
- /// </summary>
- [Required]
- [DisplayName("所属课程")]
- public Guid EducationMissionClassID { get; set; }
- /// <summary>
- /// 作业名称
- /// </summary>
- [Required]
- [DisplayName("作业名称")]
- public string WorkName { get; set; }
- [DisplayName("有效时间")]
- public string examtip { get; set; }
- /// <summary>
- /// test_begin_date
- /// </summary>
- public Nullable<System.DateTime> test_begin_date { get; set; }
- /// <summary>
- /// test_end_date
- /// </summary>
- public Nullable<System.DateTime> test_end_date { get; set; }
- /// <summary>
- /// ModityContent
- /// </summary>
- [DisplayName("作业说明")]
- public string ModityContent { get; set; }
- public Dictionary<string, object> PaperData { get; set; }
- }
- }
|