package com.gkhy.safePlatform.account.model.dto.resp;
|
|
import java.io.Serializable;
|
|
public class ScheduleTemplateRespDTO implements Serializable {
|
|
private static final long serialVersionUID = -3354214204688828125L;
|
|
private Long id;
|
|
//排班类型
|
private Byte scheduleType;
|
|
//排班模板状态
|
private Byte status;
|
|
//排班开始时间 - 小时
|
private Integer startHour;
|
|
//排班开始时间 - 分钟
|
private Integer startMin;
|
|
//排班结束时间 - 小时
|
private Integer endHour;
|
|
//排班结束时间 - 分钟
|
private Integer endMin;
|
|
//排班是否跨越自然日
|
private Boolean acrossDay;
|
|
//持续天数
|
private Integer continueDayCount;
|
|
//休息天数
|
private Integer breakDayCount;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getScheduleType() {
|
return scheduleType;
|
}
|
|
public void setScheduleType(Byte scheduleType) {
|
this.scheduleType = scheduleType;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Integer getStartHour() {
|
return startHour;
|
}
|
|
public void setStartHour(Integer startHour) {
|
this.startHour = startHour;
|
}
|
|
public Integer getStartMin() {
|
return startMin;
|
}
|
|
public void setStartMin(Integer startMin) {
|
this.startMin = startMin;
|
}
|
|
public Integer getEndHour() {
|
return endHour;
|
}
|
|
public void setEndHour(Integer endHour) {
|
this.endHour = endHour;
|
}
|
|
public Integer getEndMin() {
|
return endMin;
|
}
|
|
public void setEndMin(Integer endMin) {
|
this.endMin = endMin;
|
}
|
|
public Boolean getAcrossDay() {
|
return acrossDay;
|
}
|
|
public void setAcrossDay(Boolean acrossDay) {
|
this.acrossDay = acrossDay;
|
}
|
|
public Integer getContinueDayCount() {
|
return continueDayCount;
|
}
|
|
public void setContinueDayCount(Integer continueDayCount) {
|
this.continueDayCount = continueDayCount;
|
}
|
|
public Integer getBreakDayCount() {
|
return breakDayCount;
|
}
|
|
public void setBreakDayCount(Integer breakDayCount) {
|
this.breakDayCount = breakDayCount;
|
}
|
}
|