Wage.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Models
  6. {
  7. /// <summary>
  8. /// 工资类
  9. /// </summary>
  10. public class Wage
  11. {
  12. int id;
  13. /// <summary>
  14. /// 主键编号
  15. /// </summary>
  16. public int Id
  17. {
  18. get { return id; }
  19. set { id = value; }
  20. }
  21. string yearMonth;
  22. /// <summary>
  23. /// 年月
  24. /// </summary>
  25. public string YearMonth
  26. {
  27. get { return yearMonth; }
  28. set { yearMonth = value; }
  29. }
  30. int userId;
  31. /// <summary>
  32. /// 员工外键编号
  33. /// </summary>
  34. public int UserId
  35. {
  36. get { return userId; }
  37. set { userId = value; }
  38. }
  39. string startDate;
  40. /// <summary>
  41. /// 工资日期起
  42. /// </summary>
  43. public string StartDate
  44. {
  45. get { return startDate; }
  46. set { startDate = value; }
  47. }
  48. string endDate;
  49. /// <summary>
  50. /// 工资日期止
  51. /// </summary>
  52. public string EndDate
  53. {
  54. get { return endDate; }
  55. set { endDate = value; }
  56. }
  57. float basic;
  58. /// <summary>
  59. /// 基本工资
  60. /// </summary>
  61. public float Basic
  62. {
  63. get { return basic; }
  64. set { basic = value; }
  65. }
  66. float floats;
  67. /// <summary>
  68. /// 绩效工资
  69. /// </summary>
  70. public float Floats
  71. {
  72. get { return floats; }
  73. set { floats = value; }
  74. }
  75. float postAllowance;
  76. /// <summary>
  77. /// 岗位津贴
  78. /// </summary>
  79. public float PostAllowance
  80. {
  81. get { return postAllowance; }
  82. set { postAllowance = value; }
  83. }
  84. float garmentWashSubsidies;
  85. /// <summary>
  86. /// 服装洗理补贴
  87. /// </summary>
  88. public float GarmentWashSubsidies
  89. {
  90. get { return garmentWashSubsidies; }
  91. set { garmentWashSubsidies = value; }
  92. }
  93. float communicationSubsidies;
  94. /// <summary>
  95. /// 通讯补贴
  96. /// </summary>
  97. public float CommunicationSubsidies
  98. {
  99. get { return communicationSubsidies; }
  100. set { communicationSubsidies = value; }
  101. }
  102. float trafficSubsidies;
  103. /// <summary>
  104. /// 交通补贴
  105. /// </summary>
  106. public float TrafficSubsidies
  107. {
  108. get { return trafficSubsidies; }
  109. set { trafficSubsidies = value; }
  110. }
  111. float informationSecurityFee;
  112. /// <summary>
  113. /// 保密费
  114. /// </summary>
  115. public float InformationSecurityFee
  116. {
  117. get { return informationSecurityFee; }
  118. set { informationSecurityFee = value; }
  119. }
  120. float operationBonus;
  121. /// <summary>
  122. /// 操作奖金
  123. /// </summary>
  124. public float OperationBonus
  125. {
  126. get { return operationBonus; }
  127. set { operationBonus = value; }
  128. }
  129. float specialAllowance;
  130. /// <summary>
  131. /// 特殊津贴
  132. /// </summary>
  133. public float SpecialAllowance
  134. {
  135. get { return specialAllowance; }
  136. set { specialAllowance = value; }
  137. }
  138. float otherSubsidies;
  139. /// <summary>
  140. /// 其他补贴
  141. /// </summary>
  142. public float OtherSubsidies
  143. {
  144. get { return otherSubsidies; }
  145. set { otherSubsidies = value; }
  146. }
  147. float withholdingInsurance;
  148. /// <summary>
  149. /// 代扣保险
  150. /// </summary>
  151. public float WithholdingInsurance
  152. {
  153. get { return withholdingInsurance; }
  154. set { withholdingInsurance = value; }
  155. }
  156. float sickLeave;
  157. /// <summary>
  158. /// 病假
  159. /// </summary>
  160. public float SickLeave
  161. {
  162. get { return sickLeave; }
  163. set { sickLeave = value; }
  164. }
  165. float somethingFalse;
  166. /// <summary>
  167. /// 事假
  168. /// </summary>
  169. public float SomethingFalse
  170. {
  171. get { return somethingFalse; }
  172. set { somethingFalse = value; }
  173. }
  174. float lateTo;
  175. /// <summary>
  176. /// 迟到
  177. /// </summary>
  178. public float LateTo
  179. {
  180. get { return lateTo; }
  181. set { lateTo = value; }
  182. }
  183. float leaveEarly;
  184. /// <summary>
  185. /// 早退
  186. /// </summary>
  187. public float LeaveEarly
  188. {
  189. get { return leaveEarly; }
  190. set { leaveEarly = value; }
  191. }
  192. float absenteeism;
  193. /// <summary>
  194. /// 旷工
  195. /// </summary>
  196. public float Absenteeism
  197. {
  198. get { return absenteeism; }
  199. set { absenteeism = value; }
  200. }
  201. float notPunch;
  202. /// <summary>
  203. /// 未打卡
  204. /// </summary>
  205. public float NotPunch
  206. {
  207. get { return notPunch; }
  208. set { notPunch = value; }
  209. }
  210. float otherDeductions;
  211. /// <summary>
  212. /// 其他扣款
  213. /// </summary>
  214. public float OtherDeductions
  215. {
  216. get { return otherDeductions; }
  217. set { otherDeductions = value; }
  218. }
  219. float should;
  220. /// <summary>
  221. /// 应发合计
  222. /// </summary>
  223. public float Should
  224. {
  225. get { return should; }
  226. set { should = value; }
  227. }
  228. float totalDeductions;
  229. /// <summary>
  230. /// 扣款合计
  231. /// </summary>
  232. public float TotalDeductions
  233. {
  234. get { return totalDeductions; }
  235. set { totalDeductions = value; }
  236. }
  237. float totalRealHair;
  238. /// <summary>
  239. /// 实发合计
  240. /// </summary>
  241. public float TotalRealHair
  242. {
  243. get { return totalRealHair; }
  244. set { totalRealHair = value; }
  245. }
  246. float tax;
  247. /// <summary>
  248. /// 代扣个税
  249. /// </summary>
  250. public float Tax
  251. {
  252. get { return tax; }
  253. set { tax = value; }
  254. }
  255. float afterTax;
  256. /// <summary>
  257. /// 税后工资
  258. /// </summary>
  259. public float AfterTax
  260. {
  261. get { return afterTax; }
  262. set { afterTax = value; }
  263. }
  264. int isLock;
  265. /// <summary>
  266. /// 锁定标识
  267. /// </summary>
  268. public int IsLock
  269. {
  270. get { return isLock; }
  271. set { isLock = value; }
  272. }
  273. string remark;
  274. /// <summary>
  275. /// 备注
  276. /// </summary>
  277. public string Remark
  278. {
  279. get { return remark; }
  280. set { remark = value; }
  281. }
  282. int operators;
  283. /// <summary>
  284. /// 操作人
  285. /// </summary>
  286. public int Operators
  287. {
  288. get { return operators; }
  289. set { operators = value; }
  290. }
  291. string operatorsDate;
  292. /// <summary>
  293. /// 操作时间
  294. /// </summary>
  295. public string OperatorsDate
  296. {
  297. get { return operatorsDate; }
  298. set { operatorsDate = value; }
  299. }
  300. int isDel;
  301. /// <summary>
  302. /// 删除标识
  303. /// </summary>
  304. public int IsDel
  305. {
  306. get { return isDel; }
  307. set { isDel = value; }
  308. }
  309. float mealsupplement;
  310. /// <summary>
  311. /// 餐补
  312. /// </summary>
  313. public float Mealsupplement
  314. {
  315. get { return mealsupplement; }
  316. set { mealsupplement = value; }
  317. }
  318. /// <summary>
  319. /// 公积金
  320. /// </summary>
  321. float gongjijin;
  322. public float Gongjijin
  323. {
  324. get { return gongjijin; }
  325. set { gongjijin = value; }
  326. }
  327. float groupCost;
  328. /// <summary>
  329. /// 部门集体团建费
  330. /// </summary>
  331. public float GroupCost
  332. {
  333. get { return groupCost; }
  334. set { groupCost = value; }
  335. }
  336. }
  337. }