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