using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 工资类
///
public class Wage
{
int id;
///
/// 主键编号
///
public int Id
{
get { return id; }
set { id = value; }
}
string yearMonth;
///
/// 年月
///
public string YearMonth
{
get { return yearMonth; }
set { yearMonth = value; }
}
int userId;
///
/// 员工外键编号
///
public int UserId
{
get { return userId; }
set { userId = value; }
}
string startDate;
///
/// 工资日期起
///
public string StartDate
{
get { return startDate; }
set { startDate = value; }
}
string endDate;
///
/// 工资日期止
///
public string EndDate
{
get { return endDate; }
set { endDate = value; }
}
float basic;
///
/// 基本工资
///
public float Basic
{
get { return basic; }
set { basic = value; }
}
float floats;
///
/// 绩效工资
///
public float Floats
{
get { return floats; }
set { floats = value; }
}
float postAllowance;
///
/// 岗位津贴
///
public float PostAllowance
{
get { return postAllowance; }
set { postAllowance = value; }
}
float garmentWashSubsidies;
///
/// 服装洗理补贴
///
public float GarmentWashSubsidies
{
get { return garmentWashSubsidies; }
set { garmentWashSubsidies = value; }
}
float communicationSubsidies;
///
/// 通讯补贴
///
public float CommunicationSubsidies
{
get { return communicationSubsidies; }
set { communicationSubsidies = value; }
}
float trafficSubsidies;
///
/// 交通补贴
///
public float TrafficSubsidies
{
get { return trafficSubsidies; }
set { trafficSubsidies = value; }
}
float informationSecurityFee;
///
/// 保密费
///
public float InformationSecurityFee
{
get { return informationSecurityFee; }
set { informationSecurityFee = value; }
}
float operationBonus;
///
/// 操作奖金
///
public float OperationBonus
{
get { return operationBonus; }
set { operationBonus = value; }
}
float specialAllowance;
///
/// 特殊津贴
///
public float SpecialAllowance
{
get { return specialAllowance; }
set { specialAllowance = value; }
}
float otherSubsidies;
///
/// 其他补贴
///
public float OtherSubsidies
{
get { return otherSubsidies; }
set { otherSubsidies = value; }
}
float withholdingInsurance;
///
/// 代扣保险
///
public float WithholdingInsurance
{
get { return withholdingInsurance; }
set { withholdingInsurance = value; }
}
float sickLeave;
///
/// 病假
///
public float SickLeave
{
get { return sickLeave; }
set { sickLeave = value; }
}
float somethingFalse;
///
/// 事假
///
public float SomethingFalse
{
get { return somethingFalse; }
set { somethingFalse = value; }
}
float lateTo;
///
/// 迟到
///
public float LateTo
{
get { return lateTo; }
set { lateTo = value; }
}
float leaveEarly;
///
/// 早退
///
public float LeaveEarly
{
get { return leaveEarly; }
set { leaveEarly = value; }
}
float absenteeism;
///
/// 旷工
///
public float Absenteeism
{
get { return absenteeism; }
set { absenteeism = value; }
}
float notPunch;
///
/// 未打卡
///
public float NotPunch
{
get { return notPunch; }
set { notPunch = value; }
}
float otherDeductions;
///
/// 其他扣款
///
public float OtherDeductions
{
get { return otherDeductions; }
set { otherDeductions = value; }
}
float should;
///
/// 应发合计
///
public float Should
{
get { return should; }
set { should = value; }
}
float totalDeductions;
///
/// 扣款合计
///
public float TotalDeductions
{
get { return totalDeductions; }
set { totalDeductions = value; }
}
float totalRealHair;
///
/// 实发合计
///
public float TotalRealHair
{
get { return totalRealHair; }
set { totalRealHair = value; }
}
float tax;
///
/// 代扣个税
///
public float Tax
{
get { return tax; }
set { tax = value; }
}
float afterTax;
///
/// 税后工资
///
public float AfterTax
{
get { return afterTax; }
set { afterTax = value; }
}
int isLock;
///
/// 锁定标识
///
public int IsLock
{
get { return isLock; }
set { isLock = 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; }
}
float mealsupplement;
///
/// 餐补
///
public float Mealsupplement
{
get { return mealsupplement; }
set { mealsupplement = value; }
}
///
/// 公积金
///
float gongjijin;
public float Gongjijin
{
get { return gongjijin; }
set { gongjijin = value; }
}
float groupCost;
///
/// 部门集体团建费
///
public float GroupCost
{
get { return groupCost; }
set { groupCost = value; }
}
}
}