37 lines
736 B
Java
37 lines
736 B
Java
package WEB-INF.classes.wenrgise.common.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseBean;
|
|
|
|
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;
|
|
}
|
|
}
|