first commit
This commit is contained in:
53
hrmsEjb/wenrgise/common/bean/CommonAttributes.java
Normal file
53
hrmsEjb/wenrgise/common/bean/CommonAttributes.java
Normal file
@@ -0,0 +1,53 @@
|
||||
package 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user