使用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