first commit
This commit is contained in:
35
hrmsEjb/wenrgise/common/bean/BaseDetailBean.java
Normal file
35
hrmsEjb/wenrgise/common/bean/BaseDetailBean.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package wenrgise.common.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BaseDetailBean extends BaseBean implements Serializable {
|
||||
String detailId = null;
|
||||
|
||||
String itemChecked = "N";
|
||||
|
||||
String status = "Q";
|
||||
|
||||
public String getDetailId() {
|
||||
return this.detailId;
|
||||
}
|
||||
|
||||
public void setDetailId(String newDetailId) {
|
||||
this.detailId = newDetailId;
|
||||
}
|
||||
|
||||
public String getItemChecked() {
|
||||
return this.itemChecked;
|
||||
}
|
||||
|
||||
public void setItemChecked(String newItemChecked) {
|
||||
this.itemChecked = newItemChecked;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String newStatus) {
|
||||
this.status = newStatus;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user