using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
public class MonthKpiItemScore
{
int id;
public int Id
{
get { return id; }
set { id = value; }
}
int uid;
///
/// 员工ID
///
public int Uid
{
get { return uid; }
set { uid = value; }
}
string yearMonth;
///
/// 考核年月
///
public string YearMonth
{
get { return yearMonth; }
set { yearMonth = value; }
}
string itemId;
///
/// 次级考核序号
///
public string ItemId
{
get { return itemId; }
set { itemId = value; }
}
float itemLeaderScore;
///
/// 次级考核项目主管评分
///
public float ItemLeaderScore
{
get { return itemLeaderScore; }
set { itemLeaderScore = value; }
}
float itemManaScore;
///
/// 次级考核项目总经理评分
///
public float ItemManaScore
{
get { return itemManaScore; }
set { itemManaScore = value; }
}
float itemEmployScore;
///
/// 次级考核项目员工评分
///
public float ItemEmployScore
{
get { return itemEmployScore; }
set { itemEmployScore = value; }
}
int isDel;
public int IsDel
{
get { return isDel; }
set { isDel = value; }
}
}
}