Hentua
2023-06-12 cbfcb952897532e377dd3027f6834c82d38341fc
1
2
3
4
5
6
7
8
9
10
package cc.mrbird.febs.mall.vo;
 
import java.util.List;
 
public class TreeItemVo {
 
    private String name;
 
    private List<TreeItemVo> children;
}