|
@@ -37,15 +37,15 @@ public class Resources extends JpaBaseDomain implements Serializable {
|
|
|
@Column
|
|
|
String appId;
|
|
|
@Column
|
|
|
- String pid;
|
|
|
+ String parentId;
|
|
|
@Column
|
|
|
- String pname;
|
|
|
+ String parentName;
|
|
|
@Column
|
|
|
- String resType;
|
|
|
+ String resourceType;
|
|
|
@Column
|
|
|
- String resUrl;
|
|
|
+ String resourceUrl;
|
|
|
@Column
|
|
|
- String resAction;
|
|
|
+ String resourceAction;
|
|
|
@Column
|
|
|
String status;
|
|
|
@Column
|
|
@@ -80,102 +80,100 @@ public class Resources extends JpaBaseDomain implements Serializable {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
- public String getStatus() {
|
|
|
- return status;
|
|
|
+ public String getAppId() {
|
|
|
+ return appId;
|
|
|
}
|
|
|
|
|
|
- public void setStatus(String status) {
|
|
|
- this.status = status;
|
|
|
+ public void setAppId(String appId) {
|
|
|
+ this.appId = appId;
|
|
|
}
|
|
|
|
|
|
- public String getDescription() {
|
|
|
- return description;
|
|
|
+ public String getParentId() {
|
|
|
+ return parentId;
|
|
|
}
|
|
|
|
|
|
- public void setDescription(String description) {
|
|
|
- this.description = description;
|
|
|
+ public void setParentId(String parentId) {
|
|
|
+ this.parentId = parentId;
|
|
|
}
|
|
|
|
|
|
- public String getCreatedBy() {
|
|
|
- return createdBy;
|
|
|
+ public String getParentName() {
|
|
|
+ return parentName;
|
|
|
}
|
|
|
|
|
|
- public void setCreatedBy(String createdBy) {
|
|
|
- this.createdBy = createdBy;
|
|
|
+ public void setParentName(String parentName) {
|
|
|
+ this.parentName = parentName;
|
|
|
}
|
|
|
|
|
|
- public String getCreatedDate() {
|
|
|
- return createdDate;
|
|
|
+ public String getResourceType() {
|
|
|
+ return resourceType;
|
|
|
}
|
|
|
|
|
|
- public void setCreatedDate(String createdDate) {
|
|
|
- this.createdDate = createdDate;
|
|
|
+ public void setResourceType(String resourceType) {
|
|
|
+ this.resourceType = resourceType;
|
|
|
}
|
|
|
|
|
|
- public String getModifiedBy() {
|
|
|
- return modifiedBy;
|
|
|
+ public String getResourceUrl() {
|
|
|
+ return resourceUrl;
|
|
|
}
|
|
|
|
|
|
- public void setModifiedBy(String modifiedBy) {
|
|
|
- this.modifiedBy = modifiedBy;
|
|
|
+ public void setResourceUrl(String resourceUrl) {
|
|
|
+ this.resourceUrl = resourceUrl;
|
|
|
}
|
|
|
|
|
|
- public String getModifiedDate() {
|
|
|
- return modifiedDate;
|
|
|
+ public String getResourceAction() {
|
|
|
+ return resourceAction;
|
|
|
}
|
|
|
|
|
|
- public void setModifiedDate(String modifiedDate) {
|
|
|
- this.modifiedDate = modifiedDate;
|
|
|
+ public void setResourceAction(String resourceAction) {
|
|
|
+ this.resourceAction = resourceAction;
|
|
|
}
|
|
|
|
|
|
- public String getResType() {
|
|
|
- return resType;
|
|
|
+ public String getStatus() {
|
|
|
+ return status;
|
|
|
}
|
|
|
|
|
|
- public void setResType(String resType) {
|
|
|
- this.resType = resType;
|
|
|
+ public void setStatus(String status) {
|
|
|
+ this.status = status;
|
|
|
}
|
|
|
|
|
|
- public String getResUrl() {
|
|
|
- return resUrl;
|
|
|
+ public String getDescription() {
|
|
|
+ return description;
|
|
|
}
|
|
|
|
|
|
- public void setResUrl(String resUrl) {
|
|
|
- this.resUrl = resUrl;
|
|
|
+ public void setDescription(String description) {
|
|
|
+ this.description = description;
|
|
|
}
|
|
|
|
|
|
- public String getResAction() {
|
|
|
- return resAction;
|
|
|
+ public String getCreatedBy() {
|
|
|
+ return createdBy;
|
|
|
}
|
|
|
|
|
|
- public void setResAction(String resAction) {
|
|
|
- this.resAction = resAction;
|
|
|
+ public void setCreatedBy(String createdBy) {
|
|
|
+ this.createdBy = createdBy;
|
|
|
}
|
|
|
|
|
|
- public String getPid() {
|
|
|
- return pid;
|
|
|
+ public String getCreatedDate() {
|
|
|
+ return createdDate;
|
|
|
}
|
|
|
|
|
|
- public void setPid(String pid) {
|
|
|
- this.pid = pid;
|
|
|
+ public void setCreatedDate(String createdDate) {
|
|
|
+ this.createdDate = createdDate;
|
|
|
}
|
|
|
|
|
|
- public String getPname() {
|
|
|
- return pname;
|
|
|
+ public String getModifiedBy() {
|
|
|
+ return modifiedBy;
|
|
|
}
|
|
|
|
|
|
- public void setPname(String pname) {
|
|
|
- this.pname = pname;
|
|
|
+ public void setModifiedBy(String modifiedBy) {
|
|
|
+ this.modifiedBy = modifiedBy;
|
|
|
}
|
|
|
|
|
|
- public String getAppId() {
|
|
|
- return appId;
|
|
|
+ public String getModifiedDate() {
|
|
|
+ return modifiedDate;
|
|
|
}
|
|
|
|
|
|
- public void setAppId(String appId) {
|
|
|
- this.appId = appId;
|
|
|
+ public void setModifiedDate(String modifiedDate) {
|
|
|
+ this.modifiedDate = modifiedDate;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
}
|