//------------------------------------------------------------------------------ // // 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; /// /// EM_CourseVideo /// public partial class EM_CourseVideo { public EM_CourseVideo() { this.EM_CourseChapter_Video = new HashSet(); this.EM_CourseStudyStatus = new HashSet(); } /// /// CourseVideoID /// public System.Guid CourseVideoID { get; set; } /// /// Name /// public string Name { get; set; } /// /// UploadUrl /// public string UploadUrl { get; set; } /// /// PlayUrl /// public string PlayUrl { get; set; } /// /// RecordStatus /// public Nullable RecordStatus { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// EM_CourseChapter_Video /// public virtual HashSet EM_CourseChapter_Video { get; set; } /// /// EM_CourseStudyStatus /// public virtual HashSet EM_CourseStudyStatus { get; set; } } }