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_BusinessRef; import com.landtool.lanbase.modules.res.entity.Res_Catalog; import com.landtool.lanbase.modules.res.entity.Res_MainInfo; @Mapper public interface Res_BusinessRefMapper { /** * 删除记录 */ int deleteByPrimaryKey(Integer resrefid); int insert(Res_BusinessRef record); int insertSelective(Res_BusinessRef record); Res_BusinessRef selectByPrimaryKey(Integer resrefid); int updateByPrimaryKeySelective(Res_BusinessRef record); int updateByPrimaryKey(Res_BusinessRef record); List selectResBusinesssRef(Res_BusinessRef record); List getResBusinesssRefList(Res_BusinessRef resBusinessRef); List getResourceSetGLTC(Res_BusinessRef record); List getResourceSelectGLTC(Res_MainInfo resMainInfo); List getResourceGLTCCatalog(Map map); List getResourceGLTCCatalogList(Map map); // int addResourceSelectByGLTC(Res_BusinessRef record); int deleteByResourceid(Integer resourceid); int selectCountByResourceid(Integer resourceid); }