123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- package com.ruoyi.zhushi.entity;
-
- import java.math.BigDecimal;
- import java.util.List;
-
- public class EmployeeAttendance {
- private long userId;
- private String employeeName;
- private String nickName;
- private String department;
- private String dateTime;
- private int year;
- private int month;
- private List<DayRecord> dayRecords;
-
- private int chidaorenshu = 0;
- private int chidaocishu = 0;
- private int zaotuirenshu = 0;
- private int zaotuicishu = 0;
- private java.math.BigDecimal workOverTime;
- private java.math.BigDecimal restOverTime;
-
- private BigDecimal exceptionCount;
-
- // getters and setters
-
- public long getUserId() {
- return userId;
- }
-
- public void setUserId(long userId) {
- this.userId = userId;
- }
-
- public String getEmployeeName() {
- return employeeName;
- }
-
- public void setEmployeeName(String employeeName) {
- this.employeeName = employeeName;
- }
-
- public String getNickName() {
- return nickName;
- }
-
- public void setNickName(String nickName) {
- this.nickName = nickName;
- }
-
- public String getDepartment() {
- return department;
- }
-
- public void setDepartment(String department) {
- this.department = department;
- }
-
- public String getDateTime() {
- return dateTime;
- }
-
- public void setDateTime(String dateTime) {
- this.dateTime = dateTime;
- }
-
- public int getYear() {
- return year;
- }
-
- public void setYear(int year) {
- this.year = year;
- }
-
- public int getMonth() {
- return month;
- }
-
- public void setMonth(int month) {
- this.month = month;
- }
-
- public List<DayRecord> getDayRecords() {
- return dayRecords;
- }
-
- public void setDayRecords(List<DayRecord> dayRecords) {
- this.dayRecords = dayRecords;
- }
-
- public int getChidaorenshu() {
- return chidaorenshu;
- }
-
- public void setChidaorenshu(int chidaorenshu) {
- this.chidaorenshu = chidaorenshu;
- }
-
- public int getChidaocishu() {
- return chidaocishu;
- }
-
- public void setChidaocishu(int chidaocishu) {
- this.chidaocishu = chidaocishu;
- }
-
- public int getZaotuirenshu() {
- return zaotuirenshu;
- }
-
- public void setZaotuirenshu(int zaotuirenshu) {
- this.zaotuirenshu = zaotuirenshu;
- }
-
- public int getZaotuicishu() {
- return zaotuicishu;
- }
-
- public void setZaotuicishu(int zaotuicishu) {
- this.zaotuicishu = zaotuicishu;
- }
-
- public BigDecimal getWorkOverTime() {
- return workOverTime;
- }
-
- public void setWorkOverTime(BigDecimal workOverTime) {
- this.workOverTime = workOverTime;
- }
-
- public BigDecimal getRestOverTime() {
- return restOverTime;
- }
-
- public void setRestOverTime(BigDecimal restOverTime) {
- this.restOverTime = restOverTime;
- }
-
- public BigDecimal getExceptionCount() {
- return exceptionCount;
- }
-
- public void setExceptionCount(BigDecimal exceptionCount) {
- this.exceptionCount = exceptionCount;
- }
- }
|