init:宁夏武警跳转初始化
This commit is contained in:
37
src/main/java/com/saye/hgddmz/commons/entity/RoleEntity.java
Normal file
37
src/main/java/com/saye/hgddmz/commons/entity/RoleEntity.java
Normal file
@@ -0,0 +1,37 @@
|
||||
package com.saye.hgddmz.commons.entity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class RoleEntity {
|
||||
|
||||
private String id;
|
||||
private String title;
|
||||
private boolean spread;
|
||||
private List<RoleEntity> children;
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
public boolean isSpread() {
|
||||
return spread;
|
||||
}
|
||||
public void setSpread(boolean spread) {
|
||||
this.spread = spread;
|
||||
}
|
||||
public List<RoleEntity> getChildren() {
|
||||
return children;
|
||||
}
|
||||
public void setChildren(List<RoleEntity> children) {
|
||||
this.children = children;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user