ViewWage.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  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 ViewWage
  11. {
  12. string yearMonth;
  13. /// <summary>
  14. /// 年月
  15. /// </summary>
  16. public string YearMonth
  17. {
  18. get { return yearMonth; }
  19. set { yearMonth = value; }
  20. }
  21. string date;
  22. /// <summary>
  23. /// 日期
  24. /// </summary>
  25. public string Date
  26. {
  27. get { return date; }
  28. set { date = value; }
  29. }
  30. string userNumber;
  31. /// <summary>
  32. /// 员工号
  33. /// </summary>
  34. public string UserNumber
  35. {
  36. get { return userNumber; }
  37. set { userNumber = value; }
  38. }
  39. string userName;
  40. /// <summary>
  41. /// 员工名称
  42. /// </summary>
  43. public string UserName
  44. {
  45. get { return userName; }
  46. set { userName = value; }
  47. }
  48. string basic;
  49. /// <summary>
  50. /// 基本工资
  51. /// </summary>
  52. public string Basic
  53. {
  54. get { return basic; }
  55. set { basic = value; }
  56. }
  57. string floats;
  58. /// <summary>
  59. /// 浮动工资
  60. /// </summary>
  61. public string Floats
  62. {
  63. get { return floats; }
  64. set { floats = value; }
  65. }
  66. string postAllowance;
  67. /// <summary>
  68. /// 岗位津贴
  69. /// </summary>
  70. public string PostAllowance
  71. {
  72. get { return postAllowance; }
  73. set { postAllowance = value; }
  74. }
  75. string garmentWashSubsidies;
  76. /// <summary>
  77. /// 服装洗理补贴
  78. /// </summary>
  79. public string GarmentWashSubsidies
  80. {
  81. get { return garmentWashSubsidies; }
  82. set { garmentWashSubsidies = value; }
  83. }
  84. string communicationSubsidies;
  85. /// <summary>
  86. /// 通讯补贴
  87. /// </summary>
  88. public string CommunicationSubsidies
  89. {
  90. get { return communicationSubsidies; }
  91. set { communicationSubsidies = value; }
  92. }
  93. string trafficSubsidies;
  94. /// <summary>
  95. /// 交通补贴
  96. /// </summary>
  97. public string TrafficSubsidies
  98. {
  99. get { return trafficSubsidies; }
  100. set { trafficSubsidies = value; }
  101. }
  102. string informationSecurityFee;
  103. /// <summary>
  104. /// 保密费
  105. /// </summary>
  106. public string InformationSecurityFee
  107. {
  108. get { return informationSecurityFee; }
  109. set { informationSecurityFee = value; }
  110. }
  111. string operationBonus;
  112. /// <summary>
  113. /// 操作奖金
  114. /// </summary>
  115. public string OperationBonus
  116. {
  117. get { return operationBonus; }
  118. set { operationBonus = value; }
  119. }
  120. string specialAllowance;
  121. /// <summary>
  122. /// 特殊津贴
  123. /// </summary>
  124. public string SpecialAllowance
  125. {
  126. get { return specialAllowance; }
  127. set { specialAllowance = value; }
  128. }
  129. string otherSubsidies;
  130. /// <summary>
  131. /// 其他补贴
  132. /// </summary>
  133. public string OtherSubsidies
  134. {
  135. get { return otherSubsidies; }
  136. set { otherSubsidies = value; }
  137. }
  138. string withholdingInsurance;
  139. /// <summary>
  140. /// 代扣保险
  141. /// </summary>
  142. public string WithholdingInsurance
  143. {
  144. get { return withholdingInsurance; }
  145. set { withholdingInsurance = value; }
  146. }
  147. string sickLeave;
  148. /// <summary>
  149. /// 病假
  150. /// </summary>
  151. public string SickLeave
  152. {
  153. get { return sickLeave; }
  154. set { sickLeave = value; }
  155. }
  156. string somethingFalse;
  157. /// <summary>
  158. /// 事假
  159. /// </summary>
  160. public string SomethingFalse
  161. {
  162. get { return somethingFalse; }
  163. set { somethingFalse = value; }
  164. }
  165. string lateTo;
  166. /// <summary>
  167. /// 迟到
  168. /// </summary>
  169. public string LateTo
  170. {
  171. get { return lateTo; }
  172. set { lateTo = value; }
  173. }
  174. string leaveEarly;
  175. /// <summary>
  176. /// 早退
  177. /// </summary>
  178. public string LeaveEarly
  179. {
  180. get { return leaveEarly; }
  181. set { leaveEarly = value; }
  182. }
  183. string absenteeism;
  184. /// <summary>
  185. /// 旷工
  186. /// </summary>
  187. public string Absenteeism
  188. {
  189. get { return absenteeism; }
  190. set { absenteeism = value; }
  191. }
  192. string notPunch;
  193. /// <summary>
  194. /// 未打卡
  195. /// </summary>
  196. public string NotPunch
  197. {
  198. get { return notPunch; }
  199. set { notPunch = value; }
  200. }
  201. string otherDeductions;
  202. /// <summary>
  203. /// 其他扣款
  204. /// </summary>
  205. public string OtherDeductions
  206. {
  207. get { return otherDeductions; }
  208. set { otherDeductions = value; }
  209. }
  210. string should;
  211. /// <summary>
  212. /// 应发合计
  213. /// </summary>
  214. public string Should
  215. {
  216. get { return should; }
  217. set { should = value; }
  218. }
  219. string totalDeductions;
  220. /// <summary>
  221. /// 扣款合计
  222. /// </summary>
  223. public string TotalDeductions
  224. {
  225. get { return totalDeductions; }
  226. set { totalDeductions = value; }
  227. }
  228. string totalRealHair;
  229. /// <summary>
  230. /// 实发合计
  231. /// </summary>
  232. public string TotalRealHair
  233. {
  234. get { return totalRealHair; }
  235. set { totalRealHair = value; }
  236. }
  237. string writeVal;
  238. /// <summary>
  239. /// 签字
  240. /// </summary>
  241. public string WriteVal
  242. {
  243. get { return writeVal; }
  244. set { writeVal = value; }
  245. }
  246. int company;
  247. /// <summary>
  248. /// 所在公司
  249. /// </summary>
  250. public int Company
  251. {
  252. get { return company; }
  253. set { company = value; }
  254. }
  255. string mealsupplement;
  256. /// <summary>
  257. /// 餐补
  258. /// </summary>
  259. public string Mealsupplement
  260. {
  261. get { return mealsupplement; }
  262. set { mealsupplement = value; }
  263. }
  264. string tax;
  265. /// <summary>
  266. /// 代扣个税
  267. /// </summary>
  268. public string Tax
  269. {
  270. get { return tax; }
  271. set { tax = value; }
  272. }
  273. string afterTax;
  274. /// <summary>
  275. /// 税后工资
  276. /// </summary>
  277. public string AfterTax
  278. {
  279. get { return afterTax; }
  280. set { afterTax = value; }
  281. }
  282. string gongjijin;
  283. /// <summary>
  284. /// 公积金
  285. /// </summary>
  286. public string Gongjijin
  287. {
  288. get { return gongjijin; }
  289. set { gongjijin = value; }
  290. }
  291. string groupCost;
  292. /// <summary>
  293. /// 部门集体团建费
  294. /// </summary>
  295. public string GroupCost
  296. {
  297. get { return groupCost; }
  298. set { groupCost = value; }
  299. }
  300. string jXKK;
  301. /// <summary>
  302. /// 绩效扣款
  303. /// </summary>
  304. public string JXKK
  305. {
  306. get { return jXKK; }
  307. set { jXKK = value; }
  308. }
  309. }
  310. }