尊敬小笼包

文章
2
资源
0
加入时间
2年10月24天

使用mybatis进行数据库中同一张表中的父子类别查询

同一张表中的父子查询表中parent_id与id对应Category.javapackage com.meutech.entity;import java.util.List;public class Category { private Integer id; private Integer parent_id; private String name; private List<Category> childcategory; pub