57 lines
1.2 KiB
Java
57 lines
1.2 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmOrgHolCalDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtHolidayDate;
|
|
|
|
private String txtHolidayName;
|
|
|
|
private String txtHolidayType;
|
|
|
|
private String txtHolTypeId;
|
|
|
|
private String txtDay;
|
|
|
|
public String getTxtHolidayDate() {
|
|
return this.txtHolidayDate;
|
|
}
|
|
|
|
public void setTxtHolidayDate(String newTxtHolidayDate) {
|
|
this.txtHolidayDate = newTxtHolidayDate;
|
|
}
|
|
|
|
public String getTxtHolidayName() {
|
|
return this.txtHolidayName;
|
|
}
|
|
|
|
public void setTxtHolidayName(String newTxtHolidayName) {
|
|
this.txtHolidayName = newTxtHolidayName;
|
|
}
|
|
|
|
public String getTxtHolidayType() {
|
|
return this.txtHolidayType;
|
|
}
|
|
|
|
public void setTxtHolidayType(String newTxtHolidayType) {
|
|
this.txtHolidayType = newTxtHolidayType;
|
|
}
|
|
|
|
public String getTxtHolTypeId() {
|
|
return this.txtHolTypeId;
|
|
}
|
|
|
|
public void setTxtHolTypeId(String newTxtHolTypeId) {
|
|
this.txtHolTypeId = newTxtHolTypeId;
|
|
}
|
|
|
|
public String getTxtDay() {
|
|
return this.txtDay;
|
|
}
|
|
|
|
public void setTxtDay(String newTxtDay) {
|
|
this.txtDay = newTxtDay;
|
|
}
|
|
}
|