using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 员工增减款项
///
public class IncreasePayments
{
int id;
///
/// 主键编号
///
public int Id
{
get { return id; }
set { id = value; }
}
string yearMonths;
///
/// 年月
///
public string YearMonths
{
get { return yearMonths; }
set { yearMonths = value; }
}
int userId;
///
/// 员工外键编号
///
public int UserId
{
get { return userId; }
set { userId = value; }
}
int sid;
///
/// 款项类型(设置数据外键编号)
///
public int Sid
{
get { return sid; }
set { sid = value; }
}
string occurrenceDate;
///
/// 款项发生日期
///
public string OccurrenceDate
{
get { return occurrenceDate; }
set { occurrenceDate = value; }
}
float money;
///
/// 款项金额
///
public float Money
{
get { return money; }
set { money = value; }
}
string remark;
///
/// 备注
///
public string Remark
{
get { return remark; }
set { remark = value; }
}
int operators;
///
/// 操作人
///
public int Operators
{
get { return operators; }
set { operators = value; }
}
string operatorsDate;
///
/// 操作时间
///
public string OperatorsDate
{
get { return operatorsDate; }
set { operatorsDate = value; }
}
int isDel;
///
/// 删除标识
///
public int IsDel
{
get { return isDel; }
set { isDel = value; }
}
}
}