package com.landtool.lanbase.modules.res.dao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import com.landtool.lanbase.modules.res.entity.Res_Catalog; import com.landtool.lanbase.modules.res.entity.Res_ExtBaseMap; import com.landtool.lanbase.modules.res.entity.Res_MainInfo; @Mapper public interface Res_ExtBaseMapMapper { int deleteByPrimaryKey(int resourceid); int insert(Res_ExtBaseMap record); int insertSelective(Res_ExtBaseMap record); Res_ExtBaseMap selectByPrimaryKey(Integer resourceid); int updateByPrimaryKeySelective(Res_ExtBaseMap record); int updateByPrimaryKey(Res_ExtBaseMap record); int selectBaseMapJoinMainInfoCount(Res_MainInfo resMainInfo); List selectBaseMapJoinMainInfo(Res_MainInfo resMainInfo); List queryApiList(Res_ExtBaseMap record); List selectByBaseMapType(Res_MainInfo resMainInfo); List getBaseMapForBZTree(Map map); List getBaseMapForBZNode(Map map); List selectBaseMapJoinMainInfoNode(Map map); List selectBaseMapJoinMainInfoTree(Map map); }