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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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.UserDefined.CatlogJoinActionrecord;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface Res_CatalogMapper {
    int deleteByPrimaryKey(int catlogid);
 
    int insert(Res_Catalog record);
 
    int insertSelective(Res_Catalog record);
 
    Res_Catalog selectByPrimaryKey(Integer catlogid);
 
    List<Res_Catalog> selectResCatalogToParentid(int parentid);
 
    Res_MainInfo selectResMainInfoToCatlogid(int Catlogid);
 
    int updateByPrimaryKeySelective(Res_Catalog record);
 
    int updateByPrimaryKey(Res_Catalog record);
 
    int selectResCatalogIsExistsSon(@Param("parentId") int parentId, @Param("spcStatus") String spcStatus);
 
    Res_Catalog getResCatalogInfoById(int catlogId);
 
    String getMaxOrderId(int id);
 
    String getMaxCATLOGCODE (int id);
 
    String getMaxId();
 
    String getMinCATLOGCODE(int id);
 
    String getMinOrderId(int id);
 
    String getMaxOrderIdFromMainIndex(int id);
 
    String getMinOrderIdFromMainIndex(int id);
 
    String getMaxCATLOGCODEFromMainIndex(int id);
 
    String getMinCATLOGCODEFromMainIndex(int id);
    
    List<Res_Catalog> selectFilterResCatalogToParentid(Res_MainInfo info);
    
    List<Res_Catalog> getYWJCMuLuTree(int id);
 
    List<CatlogJoinActionrecord> SelectMuLuCount(Map<String, Object> map);
 
    List<Res_Catalog> getMuLuTreeData(Map<String, Object> map);
 
    List<Res_MainInfo> getResourceClassTreeData(Map<String, Object> map);
 
    List<Res_Catalog> getParentCatalogsById(int id);
 
    List<Res_MainInfo> selectMuLuZiYuanList(int parentId);
 
    int selectMuLuZiYuanCount(int parentId);
 
    List<Res_Catalog> getMuLuTreeDataByResourceType(Map<String, Object> map);
 
    List<Integer> selectResCatalogExistsSon();
}