first commit
This commit is contained in:
46
hrmsEjb/wenrgise/workflow/bean/WflDocMstHdrBean.java
Normal file
46
hrmsEjb/wenrgise/workflow/bean/WflDocMstHdrBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseHeaderBean;
|
||||
|
||||
public class WflDocMstHdrBean extends BaseHeaderBean implements Serializable {
|
||||
String documentDesc;
|
||||
|
||||
String documentCode;
|
||||
|
||||
private String screenName;
|
||||
|
||||
String maxAppLevel;
|
||||
|
||||
public String getDocumentDesc() {
|
||||
return this.documentDesc;
|
||||
}
|
||||
|
||||
public void setDocumentDesc(String newDocumentDesc) {
|
||||
this.documentDesc = newDocumentDesc;
|
||||
}
|
||||
|
||||
public String getDocumentCode() {
|
||||
return this.documentCode;
|
||||
}
|
||||
|
||||
public void setDocumentCode(String newDocumentCode) {
|
||||
this.documentCode = newDocumentCode;
|
||||
}
|
||||
|
||||
public String getScreenName() {
|
||||
return this.screenName;
|
||||
}
|
||||
|
||||
public void setScreenName(String newScreenName) {
|
||||
this.screenName = newScreenName;
|
||||
}
|
||||
|
||||
public String getMaxAppLevel() {
|
||||
return this.maxAppLevel;
|
||||
}
|
||||
|
||||
public void setMaxAppLevel(String newMaxAppLevel) {
|
||||
this.maxAppLevel = newMaxAppLevel;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user