36 lines
682 B
Java
36 lines
682 B
Java
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;
|
|
}
|
|
}
|