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; @Mapper public interface Res_ThemeMapper { int insert(Res_Theme record); int insertSelective(Res_Theme record); List selectResTheme(Res_Theme resTheme); Res_Theme selectByThemeId(Integer themeId); int updateById(Res_Theme resTheme); int deleteById(Integer themeid); List getDefaultThemeList(Integer userId); List getAllTheme(); List selectThemeMapTree(Map map); List selectThememapNode(Map map); int updateOrderid(Res_Theme resTheme); List getAllThemeList(Integer userId); List getOneMapThemeList(Integer userId); Res_Theme getFirstDefaultThemeByOneMap(Integer userId); List selectKongJianFuWuNode(Map map); List selectKongJianFuWuTree(Map map); }