Digital Office Automation System Backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmployeeAttendance.java 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package com.ruoyi.zhushi.entity;
  2. import java.math.BigDecimal;
  3. import java.util.List;
  4. public class EmployeeAttendance {
  5. private long userId;
  6. private String employeeName;
  7. private String nickName;
  8. private String department;
  9. private String dateTime;
  10. private int year;
  11. private int month;
  12. private List<DayRecord> dayRecords;
  13. private int chidaorenshu = 0;
  14. private int chidaocishu = 0;
  15. private int zaotuirenshu = 0;
  16. private int zaotuicishu = 0;
  17. private java.math.BigDecimal workOverTime;
  18. private java.math.BigDecimal restOverTime;
  19. private BigDecimal exceptionCount;
  20. // getters and setters
  21. public long getUserId() {
  22. return userId;
  23. }
  24. public void setUserId(long userId) {
  25. this.userId = userId;
  26. }
  27. public String getEmployeeName() {
  28. return employeeName;
  29. }
  30. public void setEmployeeName(String employeeName) {
  31. this.employeeName = employeeName;
  32. }
  33. public String getNickName() {
  34. return nickName;
  35. }
  36. public void setNickName(String nickName) {
  37. this.nickName = nickName;
  38. }
  39. public String getDepartment() {
  40. return department;
  41. }
  42. public void setDepartment(String department) {
  43. this.department = department;
  44. }
  45. public String getDateTime() {
  46. return dateTime;
  47. }
  48. public void setDateTime(String dateTime) {
  49. this.dateTime = dateTime;
  50. }
  51. public int getYear() {
  52. return year;
  53. }
  54. public void setYear(int year) {
  55. this.year = year;
  56. }
  57. public int getMonth() {
  58. return month;
  59. }
  60. public void setMonth(int month) {
  61. this.month = month;
  62. }
  63. public List<DayRecord> getDayRecords() {
  64. return dayRecords;
  65. }
  66. public void setDayRecords(List<DayRecord> dayRecords) {
  67. this.dayRecords = dayRecords;
  68. }
  69. public int getChidaorenshu() {
  70. return chidaorenshu;
  71. }
  72. public void setChidaorenshu(int chidaorenshu) {
  73. this.chidaorenshu = chidaorenshu;
  74. }
  75. public int getChidaocishu() {
  76. return chidaocishu;
  77. }
  78. public void setChidaocishu(int chidaocishu) {
  79. this.chidaocishu = chidaocishu;
  80. }
  81. public int getZaotuirenshu() {
  82. return zaotuirenshu;
  83. }
  84. public void setZaotuirenshu(int zaotuirenshu) {
  85. this.zaotuirenshu = zaotuirenshu;
  86. }
  87. public int getZaotuicishu() {
  88. return zaotuicishu;
  89. }
  90. public void setZaotuicishu(int zaotuicishu) {
  91. this.zaotuicishu = zaotuicishu;
  92. }
  93. public BigDecimal getWorkOverTime() {
  94. return workOverTime;
  95. }
  96. public void setWorkOverTime(BigDecimal workOverTime) {
  97. this.workOverTime = workOverTime;
  98. }
  99. public BigDecimal getRestOverTime() {
  100. return restOverTime;
  101. }
  102. public void setRestOverTime(BigDecimal restOverTime) {
  103. this.restOverTime = restOverTime;
  104. }
  105. public BigDecimal getExceptionCount() {
  106. return exceptionCount;
  107. }
  108. public void setExceptionCount(BigDecimal exceptionCount) {
  109. this.exceptionCount = exceptionCount;
  110. }
  111. }