2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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);
}