267 lines
6.3 KiB
Java
267 lines
6.3 KiB
Java
package wenrgise.hrms.webtier.form;
|
|
|
|
import java.util.ArrayList;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import org.apache.struts.action.ActionErrors;
|
|
import org.apache.struts.action.ActionMapping;
|
|
|
|
public class HrmRoasterEntryForm extends HrmBaseForm {
|
|
private String txtRoasterCode;
|
|
|
|
private String txtRoasterDescription;
|
|
|
|
private String roasterCodeId;
|
|
|
|
private String disabtxtRoasterCode;
|
|
|
|
private String selectAll;
|
|
|
|
private String butRoasterCode;
|
|
|
|
private String disabbutRoasterCode;
|
|
|
|
private String disabtxtRoasterDescription;
|
|
|
|
private String[] txtEmployeeNo;
|
|
|
|
private String[] txtEmployeeName;
|
|
|
|
private String[] txtAppointmentDate;
|
|
|
|
private String[] txtDob;
|
|
|
|
private String[] txtCategory;
|
|
|
|
private String[] txtRoasterPoint;
|
|
|
|
private String[] txtCategoryAsPerRoaster;
|
|
|
|
private String[] socialStatus;
|
|
|
|
private String[] empNoId;
|
|
|
|
private String[] txtCategoryId;
|
|
|
|
private String butCategoryAsPerRoaster;
|
|
|
|
private String disabbutCategoryAsPerRoaster;
|
|
|
|
private String butEmployeeNo;
|
|
|
|
private String disabbutEmployeeNo;
|
|
|
|
private ArrayList arrHrmRoasterEntryDtl = new ArrayList();
|
|
|
|
private String disabselectAll;
|
|
|
|
private String[] entryMode;
|
|
|
|
public void reset(ActionMapping mapping, HttpServletRequest request) {
|
|
super.reset(mapping, request);
|
|
}
|
|
|
|
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
|
|
return super.validate(mapping, request);
|
|
}
|
|
|
|
public String getSelectAll() {
|
|
return this.selectAll;
|
|
}
|
|
|
|
public void setSelectAll(String selectAll) {
|
|
this.selectAll = selectAll;
|
|
}
|
|
|
|
public ArrayList getArrHrmRoasterEntryDtl() {
|
|
return this.arrHrmRoasterEntryDtl;
|
|
}
|
|
|
|
public void setArrHrmRoasterEntryDtl(ArrayList arrHrmRoasterEntryDtl) {
|
|
this.arrHrmRoasterEntryDtl = arrHrmRoasterEntryDtl;
|
|
}
|
|
|
|
public String getDisabselectAll() {
|
|
return this.disabselectAll;
|
|
}
|
|
|
|
public void setDisabselectAll(String disabselectAll) {
|
|
this.disabselectAll = disabselectAll;
|
|
}
|
|
|
|
public String getTxtRoasterCode() {
|
|
return this.txtRoasterCode;
|
|
}
|
|
|
|
public void setTxtRoasterCode(String txtRoasterCode) {
|
|
this.txtRoasterCode = txtRoasterCode;
|
|
}
|
|
|
|
public String getTxtRoasterDescription() {
|
|
return this.txtRoasterDescription;
|
|
}
|
|
|
|
public void setTxtRoasterDescription(String newTxtRoasterDescription) {
|
|
this.txtRoasterDescription = newTxtRoasterDescription;
|
|
}
|
|
|
|
public String[] getTxtRoasterPoint() {
|
|
return this.txtRoasterPoint;
|
|
}
|
|
|
|
public void setTxtRoasterPoint(String[] txtRoasterPoint) {
|
|
this.txtRoasterPoint = txtRoasterPoint;
|
|
}
|
|
|
|
public String[] getTxtCategoryAsPerRoaster() {
|
|
return this.txtCategoryAsPerRoaster;
|
|
}
|
|
|
|
public void setTxtCategoryAsPerRoaster(String[] txtCategoryAsPerRoaster) {
|
|
this.txtCategoryAsPerRoaster = txtCategoryAsPerRoaster;
|
|
}
|
|
|
|
public String getDisabtxtRoasterDescription() {
|
|
return this.disabtxtRoasterDescription;
|
|
}
|
|
|
|
public void setDisabtxtRoasterDescription(String newDisabtxtRoasterDescription) {
|
|
this.disabtxtRoasterDescription = newDisabtxtRoasterDescription;
|
|
}
|
|
|
|
public String getDisabtxtRoasterCode() {
|
|
return this.disabtxtRoasterCode;
|
|
}
|
|
|
|
public void setDisabtxtRoasterCode(String newDisabtxtRoasterCode) {
|
|
this.disabtxtRoasterCode = newDisabtxtRoasterCode;
|
|
}
|
|
|
|
public String[] getSocialStatus() {
|
|
return this.socialStatus;
|
|
}
|
|
|
|
public void setSocialStatus(String[] socialStatus) {
|
|
this.socialStatus = socialStatus;
|
|
}
|
|
|
|
public String[] getEmpNoId() {
|
|
return this.empNoId;
|
|
}
|
|
|
|
public void setEmpNoId(String[] empNoId) {
|
|
this.empNoId = empNoId;
|
|
}
|
|
|
|
public String[] getTxtCategoryId() {
|
|
return this.txtCategoryId;
|
|
}
|
|
|
|
public void setTxtCategoryId(String[] txtCategoryId) {
|
|
this.txtCategoryId = txtCategoryId;
|
|
}
|
|
|
|
public String getRoasterCodeId() {
|
|
return this.roasterCodeId;
|
|
}
|
|
|
|
public void setRoasterCodeId(String newRoasterCodeId) {
|
|
this.roasterCodeId = newRoasterCodeId;
|
|
}
|
|
|
|
public String getButRoasterCode() {
|
|
return this.butRoasterCode;
|
|
}
|
|
|
|
public void setButRoasterCode(String newButRoasterCode) {
|
|
this.butRoasterCode = newButRoasterCode;
|
|
}
|
|
|
|
public String getDisabbutRoasterCode() {
|
|
return this.disabbutRoasterCode;
|
|
}
|
|
|
|
public void setDisabbutRoasterCode(String newDisabbutRoasterCode) {
|
|
this.disabbutRoasterCode = newDisabbutRoasterCode;
|
|
}
|
|
|
|
public String getButCategoryAsPerRoaster() {
|
|
return this.butCategoryAsPerRoaster;
|
|
}
|
|
|
|
public void setButCategoryAsPerRoaster(String newButCategoryAsPerRoaster) {
|
|
this.butCategoryAsPerRoaster = newButCategoryAsPerRoaster;
|
|
}
|
|
|
|
public String getDisabbutCategoryAsPerRoaster() {
|
|
return this.disabbutCategoryAsPerRoaster;
|
|
}
|
|
|
|
public void setDisabbutCategoryAsPerRoaster(String newDisabbutCategoryAsPerRoaster) {
|
|
this.disabbutCategoryAsPerRoaster = newDisabbutCategoryAsPerRoaster;
|
|
}
|
|
|
|
public String[] getTxtEmployeeNo() {
|
|
return this.txtEmployeeNo;
|
|
}
|
|
|
|
public void setTxtEmployeeNo(String[] txtEmployeeNo) {
|
|
this.txtEmployeeNo = txtEmployeeNo;
|
|
}
|
|
|
|
public String[] getTxtEmployeeName() {
|
|
return this.txtEmployeeName;
|
|
}
|
|
|
|
public void setTxtEmployeeName(String[] txtEmployeeName) {
|
|
this.txtEmployeeName = txtEmployeeName;
|
|
}
|
|
|
|
public String[] getTxtAppointmentDate() {
|
|
return this.txtAppointmentDate;
|
|
}
|
|
|
|
public void setTxtAppointmentDate(String[] txtAppointmentDate) {
|
|
this.txtAppointmentDate = txtAppointmentDate;
|
|
}
|
|
|
|
public String[] getTxtDob() {
|
|
return this.txtDob;
|
|
}
|
|
|
|
public void setTxtDob(String[] txtDob) {
|
|
this.txtDob = txtDob;
|
|
}
|
|
|
|
public String[] getTxtCategory() {
|
|
return this.txtCategory;
|
|
}
|
|
|
|
public void setTxtCategory(String[] txtCategory) {
|
|
this.txtCategory = txtCategory;
|
|
}
|
|
|
|
public String getButEmployeeNo() {
|
|
return this.butEmployeeNo;
|
|
}
|
|
|
|
public void setButEmployeeNo(String newButEmployeeNo) {
|
|
this.butEmployeeNo = newButEmployeeNo;
|
|
}
|
|
|
|
public String getDisabbutEmployeeNo() {
|
|
return this.disabbutEmployeeNo;
|
|
}
|
|
|
|
public void setDisabbutEmployeeNo(String newDisabbutEmployeeNo) {
|
|
this.disabbutEmployeeNo = newDisabbutEmployeeNo;
|
|
}
|
|
|
|
public String[] getEntryMode() {
|
|
return this.entryMode;
|
|
}
|
|
|
|
public void setEntryMode(String[] entryMode) {
|
|
this.entryMode = entryMode;
|
|
}
|
|
}
|