//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMISOnline.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// CourseworkResult /// public partial class CourseworkResult { /// /// ID /// public decimal ID { get; set; } /// /// user_id /// public string user_id { get; set; } /// /// test_paper_id /// public Nullable test_paper_id { get; set; } /// /// test_begin_date /// public Nullable test_begin_date { get; set; } /// /// test_end_date /// public Nullable test_end_date { get; set; } /// /// limited_minutes /// public Nullable limited_minutes { get; set; } /// /// workid /// public Nullable workid { get; set; } /// /// ExaminationPaperID /// public Nullable ExaminationPaperID { get; set; } /// /// username /// public string username { get; set; } /// /// score /// public Nullable score { get; set; } /// /// is_auto_read /// public Nullable is_auto_read { get; set; } /// /// state /// public Nullable state { get; set; } /// /// warning_count /// public Nullable warning_count { get; set; } /// /// lastLoginTime /// public Nullable lastLoginTime { get; set; } /// /// Coursework /// public virtual Coursework Coursework { get; set; } /// /// test_paper /// public virtual test_paper test_paper { get; set; } } }