using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.PersonnelModule
{
///
/// 财务部绩效考核
///
[SugarTable("FinanceKpi", "财务部绩效考核")]
public class FinanceKpi : 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; }
///
/// 考核内容
///
[SugarColumn(ColumnName = "EvalContent", ColumnDescription = "考核内容", IsNullable = true, ColumnDataType = "int")]
public int EvalContent { get; set; }
///
/// 是否失误
///
[SugarColumn(ColumnName = "EvalContent", ColumnDescription = "是否失误", IsNullable = true, ColumnDataType = "bit")]
public bool IsMistake { get; set; }
///
/// 失误原因
///
[SugarColumn(ColumnName = "EvalContent", ColumnDescription = "考核内容", IsNullable = true, ColumnDataType = "varchar(300)")]
public string MistakeReason { get; set; }
}
}