54 lines
1.1 KiB
Java
54 lines
1.1 KiB
Java
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;
|
|
}
|
|
}
|