package com.gkhy.safePlatform.account.model.dto.req;
|
|
import java.io.Serializable;
|
|
public class CreateScheduleTemplateReqDTO implements Serializable {
|
|
private static final long serialVersionUID = 8850294746139370004L;
|
|
//排班类型
|
private Byte scheduleType;
|
|
//排班开始时间 - 小时
|
private Integer startHour;
|
|
//排班开始时间 - 分钟
|
private Integer startMin;
|
|
//排班结束时间 - 小时
|
private Integer endHour;
|
|
//排班结束时间 - 分钟
|
private Integer endMin;
|
|
//排班是否跨越自然日
|
private Boolean acrossDay;
|
|
//按周排班开始日期
|
private Integer startDayOfWeek;
|
|
//按月排班开始日期
|
private Integer startDayOfMonth;
|
|
//持续天数
|
private Integer continueDayCount;
|
|
//休息天数
|
private Integer breakDayCount;
|
|
public Byte getScheduleType() {
|
return scheduleType;
|
}
|
|
public void setScheduleType(Byte scheduleType) {
|
this.scheduleType = scheduleType;
|
}
|
|
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 getStartDayOfWeek() {
|
return startDayOfWeek;
|
}
|
|
public void setStartDayOfWeek(Integer startDayOfWeek) {
|
this.startDayOfWeek = startDayOfWeek;
|
}
|
|
public Integer getStartDayOfMonth() {
|
return startDayOfMonth;
|
}
|
|
public void setStartDayOfMonth(Integer startDayOfMonth) {
|
this.startDayOfMonth = startDayOfMonth;
|
}
|
|
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;
|
}
|
}
|