first commit
This commit is contained in:
55
hrmsEjb/wenrgise/common/xml/vo/ScreenMode.java
Normal file
55
hrmsEjb/wenrgise/common/xml/vo/ScreenMode.java
Normal file
@@ -0,0 +1,55 @@
|
||||
package wenrgise.common.xml.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ScreenMode implements Serializable {
|
||||
private String _ModeName;
|
||||
|
||||
private String _FacadeName;
|
||||
|
||||
private String _FunctionName;
|
||||
|
||||
private String _InsertFlag;
|
||||
|
||||
private String _RecursiveFlag;
|
||||
|
||||
public String get_FacadeName() {
|
||||
return this._FacadeName;
|
||||
}
|
||||
|
||||
public void set_FacadeName(String new_FacadeName) {
|
||||
this._FacadeName = new_FacadeName;
|
||||
}
|
||||
|
||||
public String get_FunctionName() {
|
||||
return this._FunctionName;
|
||||
}
|
||||
|
||||
public void set_FunctionName(String new_FunctionName) {
|
||||
this._FunctionName = new_FunctionName;
|
||||
}
|
||||
|
||||
public String get_InsertFlag() {
|
||||
return this._InsertFlag;
|
||||
}
|
||||
|
||||
public void set_InsertFlag(String new_InsertFlag) {
|
||||
this._InsertFlag = new_InsertFlag;
|
||||
}
|
||||
|
||||
public String get_ModeName() {
|
||||
return this._ModeName;
|
||||
}
|
||||
|
||||
public void set_ModeName(String new_ModeName) {
|
||||
this._ModeName = new_ModeName;
|
||||
}
|
||||
|
||||
public String get_RecursiveFlag() {
|
||||
return this._RecursiveFlag;
|
||||
}
|
||||
|
||||
public void set_RecursiveFlag(String new_RecursiveFlag) {
|
||||
this._RecursiveFlag = new_RecursiveFlag;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user