com.frameworkset.platform.holiday.area.bean.Arrange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdp-system Show documentation
Show all versions of pdp-system Show documentation
bboss public development platform base on bboss.
package com.frameworkset.platform.holiday.area.bean;
public class Arrange {
private String areaId;
private String year;
private String week; //某月的第几周,星期几
private String dateOfYear;
private String type;
public String getAreaId() {
return areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getWeek() {
return week;
}
public void setWeek(String week) {
this.week = week;
}
public String getDateOfYear() {
return dateOfYear;
}
public void setDateOfYear(String dateOfYear) {
this.dateOfYear = dateOfYear;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}