using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///工作提醒 /// [SugarTable("OA_WorkReminder")] public partial class OA_WorkReminder { public OA_WorkReminder(){ } /// /// Desc:提醒编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:所属厂商 /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc:提醒内容(备忘录) /// Default: /// Nullable:False /// public string Content {get;set;} /// /// Desc:提醒人 /// Default: /// Nullable:True /// public string Remender {get;set;} /// /// Desc:提醒对象 /// Default: /// Nullable:True /// public string RemenderObject {get;set;} /// /// Desc:提醒类型 /// Default: /// Nullable:True /// public int? RemenderType {get;set;} /// /// Desc:提醒部门 /// Default: /// Nullable:True /// public string RemenderDept {get;set;} /// /// Desc:提醒时间 /// Default: /// Nullable:True /// public DateTime? RemenderTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? RemenderDelState {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? RemenderObjectDelState {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? IsFinish {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string FeedBackContent {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? RemindState {get;set;} } }