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_MainInfo; import com.landtool.lanbase.modules.res.entity.Res_Theme_Module; @Mapper public interface Res_Theme_ModuleMapper { int insert(Res_Theme_Module record); int insertSelective(Res_Theme_Module record); List selectList(Res_Theme_Module resThemeModule); Res_Theme_Module selectByid(Integer moduleid); int updateById(Res_Theme_Module resThemeModule); int deleteById(Integer moduleid); List getThemeModuleList(Map map); List getIgnoreThemeModuleList(Map map); List selectMapList(); List selectCatalog(Map map); List selectCatalogZiYuanList(Map map); }