34 lines
669 B
Java
34 lines
669 B
Java
package wenrgise.hrms.webtier.form;
|
|
|
|
public class ReportInputForm extends JasperReportForm {
|
|
private String txtYear;
|
|
|
|
private String txtMonth;
|
|
|
|
private String disabtxtMonth;
|
|
|
|
public String getTxtYear() {
|
|
return this.txtYear;
|
|
}
|
|
|
|
public void setTxtYear(String newTxtYear) {
|
|
this.txtYear = newTxtYear;
|
|
}
|
|
|
|
public String getTxtMonth() {
|
|
return this.txtMonth;
|
|
}
|
|
|
|
public void setTxtMonth(String newTxtMonth) {
|
|
this.txtMonth = newTxtMonth;
|
|
}
|
|
|
|
public String getDisabtxtMonth() {
|
|
return this.disabtxtMonth;
|
|
}
|
|
|
|
public void setDisabtxtMonth(String newDisabtxtMonth) {
|
|
this.disabtxtMonth = newDisabtxtMonth;
|
|
}
|
|
}
|