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