using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.PersonnelModule { /// /// 公司日常绩效考核 /// [SugarTable("Pm_CompanyDailyKpi", "公司日常绩效考核")] public class Pm_CompanyDailyKpi : EntityBase { /// /// 月份(yyyy-MM) /// [SugarColumn(ColumnName = "Month", ColumnDescription = "月份(yyyy-MM)", IsNullable = true, ColumnDataType = "varchar(30)")] public string Month { get; set; } /// /// 考核人 /// [SugarColumn(ColumnName = "Evaluator", ColumnDescription = "考核人", IsNullable = true, ColumnDataType = "int")] public int Evaluator { get; set; } /// /// 考核内容 Order /// [SugarColumn(ColumnName = "EvalContentOrder", ColumnDescription = "考核内容 Order", IsNullable = true, ColumnDataType = "int")] public int EvalContentOrder { get; set; } /// /// 考核内容 /// [SugarColumn(ColumnName = "EvalContent", ColumnDescription = "考核内容", IsNullable = true, ColumnDataType = "varchar(500)")] public string EvalContent { get; set; } /// /// 是否失误 /// [SugarColumn(ColumnName = "IsMistake", ColumnDescription = "是否失误", IsNullable = true, ColumnDataType = "bit")] public bool IsMistake { get; set; } /// /// 失误原因 /// [SugarColumn(ColumnName = "MistakeReason", ColumnDescription = "考核内容", IsNullable = true, ColumnDataType = "varchar(300)")] public string MistakeReason { get; set; } /// /// 最后修改人 /// [SugarColumn(ColumnName = "LastUpdateUserId", ColumnDescription = "最后修改人", IsNullable = true, ColumnDataType = "int")] public int LastUpdateUserId { get; set; } /// /// 最后修改时间 /// [SugarColumn(ColumnName = "LastUpdateTime", ColumnDescription = "最后修改时间", IsNullable = true, ColumnDataType = "datetime")] public DateTime LastUpdateTime { get; set; } } }