using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity.Dncmsbase { [Table("compliancecheckstatus")] public class ComplianceCheckStatus { [Key] public int Id { get; set; } public DateTime Ctime { get; set; } public int? SourceType { get; set; } public int? SourceId { get; set; } public int? CheckType { get; set; } public int? Status { get; set; } public string? Memo { get; set; } public string? Vscode { get; set; } [Column("operatorid")] public int? OperatorId { get; set; } [Column("operatorname")] public string? OperatorName { get; set; } [Column("noticetimes")] public int? NoticeTimes { get; set; } [Column("noticestatus")] public int? NoticeStatus { get; set; } [Column("noticetime")] public DateTime? NoticeTime { get; set; } public Lecturer? Lecturer { get; set; } public News? News { get; set; } public ZhiboSystemPlan? ZhiboSystemPlan { get; set; } } }