using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 考勤审核多表联查类
///
public class ViewUpCardAudit
{
int uid;
///
/// 用户外键编号
///
public int Uid
{
get { return uid; }
set { uid = value; }
}
string yearMonth;
///
/// 年月
///
public string YearMonth
{
get { return yearMonth; }
set { yearMonth = value; }
}
int isAudit;
///
/// 审核标识
///
public int IsAudit
{
get { return isAudit; }
set { isAudit = value; }
}
float upcardHours;
///
/// 补卡小时数
///
public float UpcardHours
{
get { return upcardHours; }
set { upcardHours = value; }
}
int did;
///
/// 补卡类别
///
public int Did
{
get { return did; }
set { did = value; }
}
}
}