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_QueryAround; @Mapper public interface Res_QueryAroundMapper { /** * 删除记录 * @param queryid 主键 * @return 删除状态 */ int deleteByPrimaryKey(Integer queryid); /** * 新增记录 * @param record 实体 * @return 亲增状态 */ int insert(Res_QueryAround record); int insertSelective(Res_QueryAround record); Res_QueryAround selectByPrimaryKey(Long queryid); int updateByPrimaryKeySelective(Res_QueryAround record); int updateByPrimaryKey(Res_QueryAround record); List getZhouBianList(Integer resourceid); List getZhouBianChaXunList(Res_QueryAround record); List getResourceSetZBCX(Integer resourceid); List getResourceSelectZBCX(Res_MainInfo resMainInfo); List getResourceZBCXCatalog(Map map); List getResourceZBCXCatalogList(Map map); int deleteByResourceid(Integer resourceid); int selectCountByResourceid(Integer resourceid); }