package com.letian.modules.base.entity; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import java.math.BigDecimal; import java.util.Date; public class CalendarExceptionData { private int id; private String site; private String calendarId; @DateTimeFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date scheduledate; private BigDecimal excepttime1; private BigDecimal exceptduration1; private BigDecimal excepttime2; private BigDecimal exceptduration2; private BigDecimal excepttime3; private BigDecimal exceptduration3; private BigDecimal excepttime4; private BigDecimal exceptduration4; private BigDecimal excepttime5; private BigDecimal exceptduration5; private BigDecimal excepttime6; private BigDecimal exceptduration6; private BigDecimal worktime; private String datetype; @DateTimeFormat(pattern = "HH:mm") @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") private Date exceptexacttime1; @DateTimeFormat(pattern = "HH:mm") @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") private Date exceptexacttime2; @DateTimeFormat(pattern = "HH:mm") @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") private Date exceptexacttime3; @DateTimeFormat(pattern = "HH:mm") @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") private Date exceptexacttime4; @DateTimeFormat(pattern = "HH:mm") @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") private Date exceptexacttime5; @DateTimeFormat(pattern = "HH:mm") @JsonFormat(pattern = "HH:mm", timezone = "GMT+8") private Date exceptexacttime6; private Date createdDate; private String createdBy; private Date updateDate; private String updateBy; private String delflag; private int version; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getSite() { return site; } public void setSite(String site) { this.site = site; } public String getCalendarId() { return calendarId; } public void setCalendarId(String calendarId) { this.calendarId = calendarId; } public Date getScheduledate() { return scheduledate; } public void setScheduledate(Date scheduledate) { this.scheduledate = scheduledate; } public BigDecimal getExcepttime1() { return excepttime1; } public void setExcepttime1(BigDecimal excepttime1) { this.excepttime1 = excepttime1; } public BigDecimal getExceptduration1() { return exceptduration1; } public void setExceptduration1(BigDecimal exceptduration1) { this.exceptduration1 = exceptduration1; } public BigDecimal getExcepttime2() { return excepttime2; } public void setExcepttime2(BigDecimal excepttime2) { this.excepttime2 = excepttime2; } public BigDecimal getExceptduration2() { return exceptduration2; } public void setExceptduration2(BigDecimal exceptduration2) { this.exceptduration2 = exceptduration2; } public BigDecimal getExcepttime3() { return excepttime3; } public void setExcepttime3(BigDecimal excepttime3) { this.excepttime3 = excepttime3; } public BigDecimal getExceptduration3() { return exceptduration3; } public void setExceptduration3(BigDecimal exceptduration3) { this.exceptduration3 = exceptduration3; } public BigDecimal getExcepttime4() { return excepttime4; } public void setExcepttime4(BigDecimal excepttime4) { this.excepttime4 = excepttime4; } public BigDecimal getExceptduration4() { return exceptduration4; } public void setExceptduration4(BigDecimal exceptduration4) { this.exceptduration4 = exceptduration4; } public BigDecimal getExcepttime5() { return excepttime5; } public void setExcepttime5(BigDecimal excepttime5) { this.excepttime5 = excepttime5; } public BigDecimal getExceptduration5() { return exceptduration5; } public void setExceptduration5(BigDecimal exceptduration5) { this.exceptduration5 = exceptduration5; } public BigDecimal getExcepttime6() { return excepttime6; } public void setExcepttime6(BigDecimal excepttime6) { this.excepttime6 = excepttime6; } public BigDecimal getExceptduration6() { return exceptduration6; } public void setExceptduration6(BigDecimal exceptduration6) { this.exceptduration6 = exceptduration6; } public BigDecimal getWorktime() { return worktime; } public void setWorktime(BigDecimal worktime) { this.worktime = worktime; } public String getDatetype() { return datetype; } public void setDatetype(String datetype) { this.datetype = datetype; } public Date getExceptexacttime1() { return exceptexacttime1; } public void setExceptexacttime1(Date exceptexacttime1) { this.exceptexacttime1 = exceptexacttime1; } public Date getExceptexacttime2() { return exceptexacttime2; } public void setExceptexacttime2(Date exceptexacttime2) { this.exceptexacttime2 = exceptexacttime2; } public Date getExceptexacttime3() { return exceptexacttime3; } public void setExceptexacttime3(Date exceptexacttime3) { this.exceptexacttime3 = exceptexacttime3; } public Date getExceptexacttime4() { return exceptexacttime4; } public void setExceptexacttime4(Date exceptexacttime4) { this.exceptexacttime4 = exceptexacttime4; } public Date getExceptexacttime5() { return exceptexacttime5; } public void setExceptexacttime5(Date exceptexacttime5) { this.exceptexacttime5 = exceptexacttime5; } public Date getExceptexacttime6() { return exceptexacttime6; } public void setExceptexacttime6(Date exceptexacttime6) { this.exceptexacttime6 = exceptexacttime6; } public Date getCreatedDate() { return createdDate; } public void setCreatedDate(Date createdDate) { this.createdDate = createdDate; } public String getCreatedBy() { return createdBy; } public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } public Date getUpdateDate() { return updateDate; } public void setUpdateDate(Date updateDate) { this.updateDate = updateDate; } public String getUpdateBy() { return updateBy; } public void setUpdateBy(String updateBy) { this.updateBy = updateBy; } public String getDelflag() { return delflag; } public void setDelflag(String delflag) { this.delflag = delflag; } public int getVersion() { return version; } public void setVersion(int version) { this.version = version; } }