67 lines
1.4 KiB
Java
67 lines
1.4 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmGenEligRuleHdrBean extends BaseHeaderBean implements Serializable {
|
|
private String eligSql;
|
|
|
|
private String formula;
|
|
|
|
private String documentType;
|
|
|
|
private String hidDocumentCodeId;
|
|
|
|
private String documentCode;
|
|
|
|
private String hidAction;
|
|
|
|
public String getEligSql() {
|
|
return this.eligSql;
|
|
}
|
|
|
|
public void setEligSql(String newEligSql) {
|
|
this.eligSql = newEligSql;
|
|
}
|
|
|
|
public String getFormula() {
|
|
return this.formula;
|
|
}
|
|
|
|
public void setFormula(String newFormula) {
|
|
this.formula = newFormula;
|
|
}
|
|
|
|
public String getDocumentType() {
|
|
return this.documentType;
|
|
}
|
|
|
|
public void setDocumentType(String newDocumentType) {
|
|
this.documentType = newDocumentType;
|
|
}
|
|
|
|
public String getHidDocumentCodeId() {
|
|
return this.hidDocumentCodeId;
|
|
}
|
|
|
|
public void setHidDocumentCodeId(String newHidDocumentCodeId) {
|
|
this.hidDocumentCodeId = newHidDocumentCodeId;
|
|
}
|
|
|
|
public String getDocumentCode() {
|
|
return this.documentCode;
|
|
}
|
|
|
|
public void setDocumentCode(String newDocumentCode) {
|
|
this.documentCode = newDocumentCode;
|
|
}
|
|
|
|
public String getHidAction() {
|
|
return this.hidAction;
|
|
}
|
|
|
|
public void setHidAction(String newHidAction) {
|
|
this.hidAction = newHidAction;
|
|
}
|
|
}
|