group.rober.base.pilot.model.PermitNode Maven / Gradle / Ivy
package group.rober.base.pilot.model;
import java.io.Serializable;
import java.util.List;
/**
* 权限节点对象
*/
public class PermitNode extends BaseNode implements Serializable {
private List children;
public List getChildren() {
return children;
}
public void setChildren(List children) {
this.children = children;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy