using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("hg_checkquality_notice")] public class Hg_CheckQuality_Notice { [Key] public int id { get; set; } [Column("notice_no")] public string NoticeNo { get; set; } [Column("notice_date")] public DateTime NoticeDate { get; set; } [Column("from_dept")] public string FromDept { get; set; } [Column("from_deptname")] public string FromDeptName { get; set; } [Column("to_eid")] public int ToEid { get; set; } [Column("to_dept")] public string ToDept { get; set;} [Column("to_deptname")] public string ToDeptName { get;set; } [Column("content")] public string Content { get; set; } [Column("notice_creator")] public int NoticeCreator { get; set; } [Column("notice_creator_name")] public string NoticeCreatorName { get; set; } [Column("notice_ctime")] public DateTime NoticeCtime { get; set; } [Column("punish_no")] public string? PunishNo { get; set; } [Column("punish_content")] public string? PunishContent { get; set; } [Column("punish_creator")] public int? PunishCreator { get; set; } [Column("punish_creator_name")] public string? PunishCreatorName { get; set; } [Column("punish_ctime")] public DateTime? PunishCtime { get; set; } [Column("is_delete")] public int isDelete { get; set; } public virtual ICollection Hg_CheckQuality_NoticeSigns { get; set; } } }