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<Res_QueryAround> getZhouBianList(Integer resourceid);
|
|
List<Res_QueryAround> getZhouBianChaXunList(Res_QueryAround record);
|
|
List<Res_QueryAround> getResourceSetZBCX(Integer resourceid);
|
|
List<Res_MainInfo> getResourceSelectZBCX(Res_MainInfo resMainInfo);
|
|
List<Res_Catalog> getResourceZBCXCatalog(Map<String, Object> map);
|
|
List<Res_MainInfo> getResourceZBCXCatalogList(Map<String, Object> map);
|
|
int deleteByResourceid(Integer resourceid);
|
|
int selectCountByResourceid(Integer resourceid);
|
}
|