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.
166 lines
3.5 KiB
166 lines
3.5 KiB
package com.jianteng.modules.base.entity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import org.apache.ibatis.type.Alias;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
@Alias("CalendarExceptionShiftData")
|
|
public class CalendarExceptionShiftData {
|
|
private int id;
|
|
private String site;
|
|
private String calendarId;
|
|
private String shiftNo;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
private Date scheduledate;
|
|
private String shiftDesc;
|
|
@DateTimeFormat(pattern = "HH:mm")
|
|
@JsonFormat(pattern = "HH:mm", timezone = "GMT+8")
|
|
private Date startexacttime;
|
|
@DateTimeFormat(pattern = "HH:mm")
|
|
@JsonFormat(pattern = "HH:mm", timezone = "GMT+8")
|
|
private Date endexacttime;
|
|
private BigDecimal starttime;
|
|
private BigDecimal endtime;
|
|
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 String getShiftNo() {
|
|
return shiftNo;
|
|
}
|
|
|
|
public void setShiftNo(String shiftNo) {
|
|
this.shiftNo = shiftNo;
|
|
}
|
|
|
|
public String getShiftDesc() {
|
|
return shiftDesc;
|
|
}
|
|
|
|
public void setShiftDesc(String shiftDesc) {
|
|
this.shiftDesc = shiftDesc;
|
|
}
|
|
|
|
public Date getStartexacttime() {
|
|
return startexacttime;
|
|
}
|
|
|
|
public void setStartexacttime(Date startexacttime) {
|
|
this.startexacttime = startexacttime;
|
|
}
|
|
|
|
public Date getEndexacttime() {
|
|
return endexacttime;
|
|
}
|
|
|
|
public void setEndexacttime(Date endexacttime) {
|
|
this.endexacttime = endexacttime;
|
|
}
|
|
|
|
public BigDecimal getStarttime() {
|
|
return starttime;
|
|
}
|
|
|
|
public void setStarttime(BigDecimal starttime) {
|
|
this.starttime = starttime;
|
|
}
|
|
|
|
public BigDecimal getEndtime() {
|
|
return endtime;
|
|
}
|
|
|
|
public void setEndtime(BigDecimal endtime) {
|
|
this.endtime = endtime;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
}
|