package com.qianwen.smartman.modules.mdc.vo;
|
|
public class DateInfo {
|
private String code;
|
private String title;
|
private String date;
|
private Integer week;
|
private Integer month;
|
private Integer year;
|
private Integer shiftIndex;
|
|
public void setCode(final String code) {
|
this.code = code;
|
}
|
|
public void setTitle(final String title) {
|
this.title = title;
|
}
|
|
public void setDate(final String date) {
|
this.date = date;
|
}
|
|
public void setWeek(final Integer week) {
|
this.week = week;
|
}
|
|
public void setMonth(final Integer month) {
|
this.month = month;
|
}
|
|
public void setYear(final Integer year) {
|
this.year = year;
|
}
|
|
public void setShiftIndex(final Integer shiftIndex) {
|
this.shiftIndex = shiftIndex;
|
}
|
|
public DateInfo(final String code, final String title, final String date, final Integer week, final Integer month, final Integer year, final Integer shiftIndex) {
|
this.code = code;
|
this.title = title;
|
this.date = date;
|
this.week = week;
|
this.month = month;
|
this.year = year;
|
this.shiftIndex = shiftIndex;
|
}
|
|
public DateInfo() {
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public String getTitle() {
|
return this.title;
|
}
|
|
public String getDate() {
|
return this.date;
|
}
|
|
public Integer getWeek() {
|
return this.week;
|
}
|
|
public Integer getMonth() {
|
return this.month;
|
}
|
|
public Integer getYear() {
|
return this.year;
|
}
|
|
public Integer getShiftIndex() {
|
return this.shiftIndex;
|
}
|
|
public DateInfo(String code, String title, String date, Integer week, Integer month, Integer year) {
|
this(code, title, date, week, month, year, -1);
|
}
|
}
|