package com.goldenwater.hzz.mapper; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; public interface AdTreeMapper { List> getChildren(@Param("adCode") String adCode); Map getByCode(@Param("adCode") String adCode); }