AttendanceDetailJsonObj.java 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. package cn.com.lzt.userattendancedetail.dto;
  2. import java.math.BigDecimal;
  3. import java.util.HashMap;
  4. public class AttendanceDetailJsonObj implements
  5. java.io.Serializable {
  6. /** 当天加班了 */
  7. private Boolean ihadDuty;
  8. /** 带薪休假 */
  9. private Boolean moneyLeave;
  10. /** 迟到 */
  11. private Boolean belate;
  12. /** 早退 */
  13. private Boolean leaveEarly;
  14. /** 旷工 */
  15. private BigDecimal absenteeism;
  16. /** 未打卡 */
  17. private Integer noPunchCard;
  18. /**
  19. * 事假当前请假的分钟数
  20. */
  21. private BigDecimal thingLeaveMins;
  22. /**
  23. * 病假当前请假的分钟数
  24. */
  25. private BigDecimal sickLeaveMins;
  26. /**
  27. * 调休分钟数
  28. */
  29. private BigDecimal exchangeMins;
  30. /**
  31. * 这一天的工作类型
  32. */
  33. private String worktype;
  34. /**
  35. * 实际基准时长 月度实际基准时长 带薪假时 8 小时 其他 与排班时间相等
  36. */
  37. private BigDecimal actDatumDate;
  38. /** 夜班白班津贴 单位 次*/
  39. private java.lang.Integer dayShiftSubsidy;
  40. /** 夜班夜班津贴 单位 次*/
  41. private java.lang.Integer nightShiftSubsidy;
  42. /** 日班 单位 次*/
  43. private java.lang.Integer dayShift;
  44. /** 常班 单位 次*/
  45. private java.lang.Integer regularShift;
  46. /**夜班白班津贴主键*/
  47. private String dayShiftSubsidyId;
  48. /**夜班夜班津贴主键*/
  49. private String nightShiftSubsidyId;
  50. /**日班津贴主键*/
  51. private String dayShiftId;
  52. /**常班津贴主键*/
  53. private String regularShiftId;
  54. /** 调整记录 */
  55. private java.lang.Integer adjustRecord;
  56. /** 原始出勤时间 */
  57. private java.util.Date primevalAttendanceDate;
  58. /** 原始退勤时间 */
  59. private java.util.Date primevalRetreatDate;
  60. /** 额外加班 单位 次*/
  61. private java.lang.Integer extraOvertime;
  62. /** 值班 单位 次*/
  63. private Integer dutyShift = 0;
  64. private String dutyShiftId;
  65. public Boolean getIhadDuty() {
  66. return ihadDuty;
  67. }
  68. public void setIhadDuty(Boolean ihadDuty) {
  69. this.ihadDuty = ihadDuty;
  70. }
  71. public Boolean getBelate() {
  72. return belate;
  73. }
  74. public void setBelate(Boolean belate) {
  75. this.belate = belate;
  76. }
  77. public Boolean getLeaveEarly() {
  78. return leaveEarly;
  79. }
  80. public void setLeaveEarly(Boolean leaveEarly) {
  81. this.leaveEarly = leaveEarly;
  82. }
  83. public BigDecimal getAbsenteeism() {
  84. return absenteeism;
  85. }
  86. public void setAbsenteeism(BigDecimal absenteeism) {
  87. this.absenteeism = absenteeism;
  88. }
  89. public BigDecimal getThingLeaveMins() {
  90. return thingLeaveMins;
  91. }
  92. public void setThingLeaveMins(BigDecimal thingLeaveMins) {
  93. this.thingLeaveMins = thingLeaveMins;
  94. }
  95. public Integer getNoPunchCard() {
  96. return noPunchCard;
  97. }
  98. public void setNoPunchCard(Integer noPunchCard) {
  99. this.noPunchCard = noPunchCard;
  100. }
  101. public BigDecimal getActDatumDate() {
  102. return actDatumDate;
  103. }
  104. public void setActDatumDate(BigDecimal actDatumDate) {
  105. this.actDatumDate = actDatumDate;
  106. }
  107. public String getWorktype() {
  108. return worktype;
  109. }
  110. public void setWorktype(String worktype) {
  111. this.worktype = worktype;
  112. }
  113. public java.lang.Integer getDayShiftSubsidy() {
  114. return dayShiftSubsidy;
  115. }
  116. public void setDayShiftSubsidy(java.lang.Integer dayShiftSubsidy) {
  117. this.dayShiftSubsidy = dayShiftSubsidy;
  118. }
  119. public java.lang.Integer getNightShiftSubsidy() {
  120. return nightShiftSubsidy;
  121. }
  122. public void setNightShiftSubsidy(java.lang.Integer nightShiftSubsidy) {
  123. this.nightShiftSubsidy = nightShiftSubsidy;
  124. }
  125. public java.lang.Integer getDayShift() {
  126. return dayShift;
  127. }
  128. public void setDayShift(java.lang.Integer dayShift) {
  129. this.dayShift = dayShift;
  130. }
  131. public java.lang.Integer getRegularShift() {
  132. return regularShift;
  133. }
  134. public void setRegularShift(java.lang.Integer regularShift) {
  135. this.regularShift = regularShift;
  136. }
  137. public BigDecimal getSickLeaveMins() {
  138. return sickLeaveMins;
  139. }
  140. public void setSickLeaveMins(BigDecimal sickLeaveMins) {
  141. this.sickLeaveMins = sickLeaveMins;
  142. }
  143. public java.util.Date getPrimevalAttendanceDate() {
  144. return primevalAttendanceDate;
  145. }
  146. public void setPrimevalAttendanceDate(java.util.Date primevalAttendanceDate) {
  147. this.primevalAttendanceDate = primevalAttendanceDate;
  148. }
  149. public java.util.Date getPrimevalRetreatDate() {
  150. return primevalRetreatDate;
  151. }
  152. public void setPrimevalRetreatDate(java.util.Date primevalRetreatDate) {
  153. this.primevalRetreatDate = primevalRetreatDate;
  154. }
  155. public java.lang.Integer getAdjustRecord() {
  156. return adjustRecord;
  157. }
  158. public void setAdjustRecord(java.lang.Integer adjustRecord) {
  159. this.adjustRecord = adjustRecord;
  160. }
  161. public Boolean getMoneyLeave() {
  162. return moneyLeave;
  163. }
  164. public void setMoneyLeave(Boolean moneyLeave) {
  165. this.moneyLeave = moneyLeave;
  166. }
  167. public java.lang.Integer getExtraOvertime() {
  168. return extraOvertime;
  169. }
  170. public void setExtraOvertime(java.lang.Integer extraOvertime) {
  171. this.extraOvertime = extraOvertime;
  172. }
  173. public String getDayShiftSubsidyId() {
  174. return dayShiftSubsidyId;
  175. }
  176. public void setDayShiftSubsidyId(String dayShiftSubsidyId) {
  177. this.dayShiftSubsidyId = dayShiftSubsidyId;
  178. }
  179. public String getNightShiftSubsidyId() {
  180. return nightShiftSubsidyId;
  181. }
  182. public void setNightShiftSubsidyId(String nightShiftSubsidyId) {
  183. this.nightShiftSubsidyId = nightShiftSubsidyId;
  184. }
  185. public String getDayShiftId() {
  186. return dayShiftId;
  187. }
  188. public void setDayShiftId(String dayShiftId) {
  189. this.dayShiftId = dayShiftId;
  190. }
  191. public String getRegularShiftId() {
  192. return regularShiftId;
  193. }
  194. public void setRegularShiftId(String regularShiftId) {
  195. this.regularShiftId = regularShiftId;
  196. }
  197. /**
  198. * @return the exchangeMins
  199. */
  200. public BigDecimal getExchangeMins() {
  201. return exchangeMins;
  202. }
  203. /**
  204. * @param exchangeMins the exchangeMins to set
  205. */
  206. public void setExchangeMins(BigDecimal exchangeMins) {
  207. this.exchangeMins = exchangeMins;
  208. }
  209. /**
  210. * @return the dutyShift
  211. */
  212. public Integer getDutyShift() {
  213. return dutyShift;
  214. }
  215. /**
  216. * @param dutyShift the dutyShift to set
  217. */
  218. public void setDutyShift(Integer dutyShift) {
  219. this.dutyShift = dutyShift;
  220. }
  221. /**
  222. * @return the dutyShiftId
  223. */
  224. public String getDutyShiftId() {
  225. return dutyShiftId;
  226. }
  227. /**
  228. * @param dutyShiftId the dutyShiftId to set
  229. */
  230. public void setDutyShiftId(String dutyShiftId) {
  231. this.dutyShiftId = dutyShiftId;
  232. }
  233. }