using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 工资多表联查类 /// public class ViewWage { string yearMonth; /// /// 年月 /// public string YearMonth { get { return yearMonth; } set { yearMonth = value; } } string date; /// /// 日期 /// public string Date { get { return date; } set { date = value; } } string userNumber; /// /// 员工号 /// public string UserNumber { get { return userNumber; } set { userNumber = value; } } string userName; /// /// 员工名称 /// public string UserName { get { return userName; } set { userName = value; } } string basic; /// /// 基本工资 /// public string Basic { get { return basic; } set { basic = value; } } string floats; /// /// 浮动工资 /// public string Floats { get { return floats; } set { floats = value; } } string postAllowance; /// /// 岗位津贴 /// public string PostAllowance { get { return postAllowance; } set { postAllowance = value; } } string garmentWashSubsidies; /// /// 服装洗理补贴 /// public string GarmentWashSubsidies { get { return garmentWashSubsidies; } set { garmentWashSubsidies = value; } } string communicationSubsidies; /// /// 通讯补贴 /// public string CommunicationSubsidies { get { return communicationSubsidies; } set { communicationSubsidies = value; } } string trafficSubsidies; /// /// 交通补贴 /// public string TrafficSubsidies { get { return trafficSubsidies; } set { trafficSubsidies = value; } } string informationSecurityFee; /// /// 保密费 /// public string InformationSecurityFee { get { return informationSecurityFee; } set { informationSecurityFee = value; } } string operationBonus; /// /// 操作奖金 /// public string OperationBonus { get { return operationBonus; } set { operationBonus = value; } } string specialAllowance; /// /// 特殊津贴 /// public string SpecialAllowance { get { return specialAllowance; } set { specialAllowance = value; } } string otherSubsidies; /// /// 其他补贴 /// public string OtherSubsidies { get { return otherSubsidies; } set { otherSubsidies = value; } } string withholdingInsurance; /// /// 代扣保险 /// public string WithholdingInsurance { get { return withholdingInsurance; } set { withholdingInsurance = value; } } string sickLeave; /// /// 病假 /// public string SickLeave { get { return sickLeave; } set { sickLeave = value; } } string somethingFalse; /// /// 事假 /// public string SomethingFalse { get { return somethingFalse; } set { somethingFalse = value; } } string lateTo; /// /// 迟到 /// public string LateTo { get { return lateTo; } set { lateTo = value; } } string leaveEarly; /// /// 早退 /// public string LeaveEarly { get { return leaveEarly; } set { leaveEarly = value; } } string absenteeism; /// /// 旷工 /// public string Absenteeism { get { return absenteeism; } set { absenteeism = value; } } string notPunch; /// /// 未打卡 /// public string NotPunch { get { return notPunch; } set { notPunch = value; } } string otherDeductions; /// /// 其他扣款 /// public string OtherDeductions { get { return otherDeductions; } set { otherDeductions = value; } } string should; /// /// 应发合计 /// public string Should { get { return should; } set { should = value; } } string totalDeductions; /// /// 扣款合计 /// public string TotalDeductions { get { return totalDeductions; } set { totalDeductions = value; } } string totalRealHair; /// /// 实发合计 /// public string TotalRealHair { get { return totalRealHair; } set { totalRealHair = value; } } string writeVal; /// /// 签字 /// public string WriteVal { get { return writeVal; } set { writeVal = value; } } int company; /// /// 所在公司 /// public int Company { get { return company; } set { company = value; } } string mealsupplement; /// /// 餐补 /// public string Mealsupplement { get { return mealsupplement; } set { mealsupplement = value; } } string tax; /// /// 代扣个税 /// public string Tax { get { return tax; } set { tax = value; } } string afterTax; /// /// 税后工资 /// public string AfterTax { get { return afterTax; } set { afterTax = value; } } string gongjijin; /// /// 公积金 /// public string Gongjijin { get { return gongjijin; } set { gongjijin = value; } } string groupCost; /// /// 部门集体团建费 /// public string GroupCost { get { return groupCost; } set { groupCost = value; } } string jXKK; /// /// 绩效扣款 /// public string JXKK { get { return jXKK; } set { jXKK = value; } } } }