using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///工作安排 /// [SugarTable("OA_WorkPlan")] public partial class OA_WorkPlan { public OA_WorkPlan(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc:发起人编号 /// Default: /// Nullable:True /// public Guid? SentStaffId {get;set;} /// /// Desc:部门编号 /// Default: /// Nullable:True /// public int? DepartId {get;set;} /// /// Desc:接收人编号 /// Default: /// Nullable:True /// public Guid? ReciveStaffId {get;set;} /// /// Desc:计划类型 /// Default: /// Nullable:True /// public int? PlanType {get;set;} /// /// Desc:计划性质 /// Default: /// Nullable:True /// public int? PlanDataType {get;set;} /// /// Desc:主题 /// Default: /// Nullable:True /// public string PlanTitle {get;set;} /// /// Desc:内容 /// Default: /// Nullable:True /// public string PlanContent {get;set;} /// /// Desc:执行时间 /// Default: /// Nullable:True /// public DateTime? PlanRunTime {get;set;} /// /// Desc:申请费用 /// Default: /// Nullable:True /// public decimal? PlanMoney {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string PlanRemark {get;set;} /// /// Desc:计划添加时间 /// Default: /// Nullable:True /// public DateTime? PlanStartTime {get;set;} /// /// Desc:计划人 /// Default: /// Nullable:True /// public string PlanPeople {get;set;} /// /// Desc:对口单位 /// Default: /// Nullable:True /// public string PlanComplany {get;set;} /// /// Desc:计划状态 /// Default: /// Nullable:True /// public int? PlanStatus {get;set;} /// /// Desc:审核人编号 /// Default: /// Nullable:True /// public Guid? ApprovalStaffId {get;set;} /// /// Desc:审批状态 /// Default: /// Nullable:True /// public int? ApprovalStatus {get;set;} /// /// Desc:审核时间 /// Default: /// Nullable:True /// public DateTime? ApprovalTime {get;set;} /// /// Desc:审核批复 /// Default: /// Nullable:True /// public string ApprovalContent {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} /// /// Desc:考评结果 /// Default: /// Nullable:True /// public int? EvaluationStatus {get;set;} /// /// Desc:考评内容 /// Default: /// Nullable:True /// public string EvaluationContent {get;set;} /// /// Desc:考评人 /// Default: /// Nullable:True /// public Guid? EvaluationStaffId {get;set;} /// /// Desc:考评时间 /// Default: /// Nullable:True /// public DateTime? EvaluationTime {get;set;} /// /// Desc:奖励类型 /// Default: /// Nullable:True /// public int? RewardType {get;set;} /// /// Desc:奖励原因 /// Default: /// Nullable:True /// public string RewardContent {get;set;} /// /// Desc:奖励结果 /// Default: /// Nullable:True /// public string RewardResult {get;set;} /// /// Desc:奖励金额 /// Default: /// Nullable:True /// public decimal? RewardMoney {get;set;} } }