临时提交
This commit is contained in:
parent
6213e5114e
commit
0f6251455f
|
@ -0,0 +1,15 @@
|
|||
package com.ruoyi.common.utils.collection;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface TreeVO {
|
||||
|
||||
public Object getId();
|
||||
|
||||
public Object getParentId();
|
||||
|
||||
public List<? extends TreeVO> getChildren();
|
||||
|
||||
public void setChildren(List<? extends TreeVO> children);
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user