using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { [Table("YW_Notice")] public class Ent_YW_Notice { #region Model private Guid? _id; private string _title; private string _content; private bool? _isdel; private bool? _isread; private int? _roleid; private int? _noticetype; private string _createper; private DateTime? _createdate; private string _updateuser; private DateTime? _updatedate; private string _imgurl; /// /// 主键 /// [Column("id", IsPrimaryKey = true)] public Guid? ID { set { _id = value; } get { return _id; } } /// /// 标题 /// public string Title { set { _title = value; } get { return _title; } } /// /// 正文 /// public string Content { set { _content = value; } get { return _content; } } /// /// /// public int? RoleId { set { _roleid = value; } get { return _roleid; } } /// /// /// public int? Noticetype { set { _noticetype = value; } get { return _noticetype; } } /// /// 是否删除 /// public bool? IsDel { set { _isdel = value; } get { return _isdel; } } /// /// 是否阅读 /// public bool? IsRead { set { _isread = value; } get { return _isread; } } /// /// 创建者 /// public string createper { set { _createper = value; } get { return _createper; } } /// /// 创建时间 /// public DateTime? createDate { set { _createdate = value; } get { return _createdate; } } /// /// 更新者 /// public string updateUser { set { _updateuser = value; } get { return _updateuser; } } /// /// 更新时间 /// public DateTime? updateDate { set { _updatedate = value; } get { return _updatedate; } } /// /// /// public string ImgUrl { set { _imgurl = value; } get { return _imgurl; } } #endregion Model } }