first commit
This commit is contained in:
15
hrmsWeb/WEB-INF/classes/wenrgise/common/bean/BaseBean.java
Normal file
15
hrmsWeb/WEB-INF/classes/wenrgise/common/bean/BaseBean.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package WEB-INF.classes.wenrgise.common.bean;
|
||||
|
||||
import wenrgise.common.bean.CommonAttributes;
|
||||
|
||||
public class BaseBean {
|
||||
private CommonAttributes oCommonAttributes = null;
|
||||
|
||||
public CommonAttributes getOCommonAttributes() {
|
||||
return this.oCommonAttributes;
|
||||
}
|
||||
|
||||
public void setOCommonAttributes(CommonAttributes newOCommonAttributes) {
|
||||
this.oCommonAttributes = newOCommonAttributes;
|
||||
}
|
||||
}
|
@@ -0,0 +1,36 @@
|
||||
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;
|
||||
}
|
||||
}
|
@@ -0,0 +1,46 @@
|
||||
package WEB-INF.classes.wenrgise.common.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseBean;
|
||||
|
||||
public class BaseHeaderBean extends BaseBean implements Serializable {
|
||||
private String headerPrimaryKey = null;
|
||||
|
||||
private String headerStatus = null;
|
||||
|
||||
private String pseudoHeader;
|
||||
|
||||
private String workListId;
|
||||
|
||||
public String getHeaderPrimaryKey() {
|
||||
return this.headerPrimaryKey;
|
||||
}
|
||||
|
||||
public void setHeaderPrimaryKey(String newHeaderPrimaryKey) {
|
||||
this.headerPrimaryKey = newHeaderPrimaryKey;
|
||||
}
|
||||
|
||||
public String getHeaderStatus() {
|
||||
return this.headerStatus;
|
||||
}
|
||||
|
||||
public void setHeaderStatus(String newHeaderStatus) {
|
||||
this.headerStatus = newHeaderStatus;
|
||||
}
|
||||
|
||||
public String getPseudoHeader() {
|
||||
return this.pseudoHeader;
|
||||
}
|
||||
|
||||
public void setPseudoHeader(String newPseudoHeader) {
|
||||
this.pseudoHeader = newPseudoHeader;
|
||||
}
|
||||
|
||||
public String getWorkListId() {
|
||||
return this.workListId;
|
||||
}
|
||||
|
||||
public void setWorkListId(String newWorkListId) {
|
||||
this.workListId = newWorkListId;
|
||||
}
|
||||
}
|
@@ -0,0 +1,53 @@
|
||||
package WEB-INF.classes.wenrgise.common.bean;
|
||||
|
||||
public class CommonAttributes {
|
||||
private String userIdModiFied = null;
|
||||
|
||||
private String userIdCreated = null;
|
||||
|
||||
private String createdSiteId = null;
|
||||
|
||||
private String modifiedSiteId = null;
|
||||
|
||||
private String arcFlag = "N";
|
||||
|
||||
public String getArcFlag() {
|
||||
return this.arcFlag;
|
||||
}
|
||||
|
||||
public void setArcFlag(String newArcFlag) {
|
||||
this.arcFlag = newArcFlag;
|
||||
}
|
||||
|
||||
public String getCreatedSiteId() {
|
||||
return this.createdSiteId;
|
||||
}
|
||||
|
||||
public void setCreatedSiteId(String newCreatedSiteId) {
|
||||
this.createdSiteId = newCreatedSiteId;
|
||||
}
|
||||
|
||||
public String getModifiedSiteId() {
|
||||
return this.modifiedSiteId;
|
||||
}
|
||||
|
||||
public void setModifiedSiteId(String newModifiedSiteId) {
|
||||
this.modifiedSiteId = newModifiedSiteId;
|
||||
}
|
||||
|
||||
public String getUserIdCreated() {
|
||||
return this.userIdCreated;
|
||||
}
|
||||
|
||||
public void setUserIdCreated(String newUserIdCreated) {
|
||||
this.userIdCreated = newUserIdCreated;
|
||||
}
|
||||
|
||||
public String getUserIdModiFied() {
|
||||
return this.userIdModiFied;
|
||||
}
|
||||
|
||||
public void setUserIdModiFied(String newUserIdModiFied) {
|
||||
this.userIdModiFied = newUserIdModiFied;
|
||||
}
|
||||
}
|
@@ -0,0 +1,35 @@
|
||||
package WEB-INF.classes.wenrgise.common.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EmpInfoBean implements Serializable {
|
||||
String grpId;
|
||||
|
||||
String empId;
|
||||
|
||||
String moduleId;
|
||||
|
||||
public String getGrpId() {
|
||||
return this.grpId;
|
||||
}
|
||||
|
||||
public void setGrpId(String newGrpId) {
|
||||
this.grpId = newGrpId;
|
||||
}
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
|
||||
public String getModuleId() {
|
||||
return this.moduleId;
|
||||
}
|
||||
|
||||
public void setModuleId(String newModuleId) {
|
||||
this.moduleId = newModuleId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user