临时提交

This commit is contained in:
磷叶 2025-03-03 18:04:17 +08:00
parent 6213e5114e
commit 0f6251455f

View File

@ -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);
}