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
package com.landtool.lanbase.modules.res.service;
 
import java.util.List;
import java.util.Map;
 
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;
 
/**
 * @Date: 2018-03-02 14:10
 * @param
 * @Description:ResCatalo表服务层接口
 *
 */
public interface ResCatalogService {
 
    Res_Catalog selectByPrimaryKey(Integer catlogid);
    List<Res_Catalog> selectResCatalogToParentid(int parentid);
    List<Res_Catalog> selectFilterResCatalogToParentid(Res_MainInfo info);
    List<Res_Catalog> getYWJCMuLuTree(int id);
    Res_MainInfo selectResMainInfoToCatlogid(int catlogid);
    int selectResCatalogIsExistsSon(int parentId,String spcStatus);
    int selectResCatalogIsExistsSon(int parentId);
    Res_Catalog getResCatalogInfoById(int catlogId);
    String  getMaxOrderId(int id);
    int insertSelective(Res_Catalog record);
    String  getMaxId();
    String getMaxCATLOGCODE(int id);
    int updateByPrimaryKeySelective(Res_Catalog record);
    int deleteByPrimaryKey(int id);
    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<CatlogJoinActionrecord> SelectMuLuCount(String isDiTuFuwu);
    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();
}