first commit
This commit is contained in:
39
comm/Security/src/systemuser/model/ResourceMapping.java
Executable file
39
comm/Security/src/systemuser/model/ResourceMapping.java
Executable file
@@ -0,0 +1,39 @@
|
||||
package systemuser.model;
|
||||
|
||||
|
||||
import kernel.bo.EntityObject;
|
||||
|
||||
/**
|
||||
* 权限资源映射
|
||||
*
|
||||
*/
|
||||
public class ResourceMapping extends EntityObject {
|
||||
|
||||
private static final long serialVersionUID = 3575411649937943312L;
|
||||
/**
|
||||
* 关联ResourceSetName表UUID
|
||||
*/
|
||||
private String set_id;
|
||||
|
||||
/**
|
||||
* 关联Resource表UUID
|
||||
*/
|
||||
private String resource_id;
|
||||
|
||||
public String getSet_id() {
|
||||
return set_id;
|
||||
}
|
||||
|
||||
public void setSet_id(String set_id) {
|
||||
this.set_id = set_id;
|
||||
}
|
||||
|
||||
public String getResource_id() {
|
||||
return resource_id;
|
||||
}
|
||||
|
||||
public void setResource_id(String resource_id) {
|
||||
this.resource_id = resource_id;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user