namespace Tiobon.Core.Model; public class Ghre_StudyRecordESS { public long Id { get; set; } /// /// 员工ID /// public int? StaffId { get; set; } /// /// 课程快照ID /// public long? CourseSnapId { get; set; } /// /// 课程ID /// public long? CourseId { get; set; } public string CoverUrl { get; set; } public bool? UseDefaultCoverImage { get; set; } public string DefaultCoverImageName { get; set; } public string CourseName { get; set; } public int? StandardHour { get; set; } public int? CreditPoints { get; set; } public string CourseBeginDate { get; set; } public string CourseEndDate { get; set; } public string ExamDate { get; set; } public string ExamBeginDate { get; set; } public string ExamEndDate { get; set; } public bool? ShowStudyBtn { get; set; } = true; public bool? DisableStudyBtn { get; set; } = false; public bool? ShowExamBtn { get; set; } = true; public bool? DisableExamBtn { get; set; } = false; public bool? ShowFeedbackBtn { get; set; } = true; public bool? DisableFeedbackBtn { get; set; } = true; public int StudyProgress { get; set; } = 0; }