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
73
74
75
package com.landtool.lanbase.modules.res.service.impl;
 
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import com.landtool.lanbase.modules.res.dao.Res_Theme_ModuleMapper;
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_Theme_Module;
import com.landtool.lanbase.modules.res.service.ResThemeModuleService;
 
@Service
public class ResThemeModuleServiceImpl implements ResThemeModuleService {
 
    @Autowired
    private Res_Theme_ModuleMapper resThemeModuleMapper;
 
    @Override
    public int insert(Res_Theme_Module record) {
        return resThemeModuleMapper.insert(record);
    }
 
    @Override
    public int insertSelective(Res_Theme_Module record) {
        return resThemeModuleMapper.insertSelective(record);
    }
 
    @Override
    public List<Res_Theme_Module> selectList(Res_Theme_Module resThemeModule) {
        return resThemeModuleMapper.selectList(resThemeModule);
    }
 
    @Override
    public Res_Theme_Module selectByid(Integer moduleid) {
        return resThemeModuleMapper.selectByid(moduleid);
    }
 
    @Override
    public int updateById(Res_Theme_Module resThemeModule) {
        return resThemeModuleMapper.updateById(resThemeModule);
    }
 
    @Override
    public int deleteById(Integer moduleid) {
        return resThemeModuleMapper.deleteById(moduleid);
    }
    
    @Override
    public List<Res_Theme_Module> getThemeModuleList(Map<String, Object> map) {
        return resThemeModuleMapper.getThemeModuleList(map);
    }
    
    @Override
    public List<Res_Theme_Module> getIgnoreThemeModuleList(Map<String, Object> map) {
        return resThemeModuleMapper.getIgnoreThemeModuleList(map);
    }
 
    @Override
    public List<Res_MainInfo> selectMapList() {
        return resThemeModuleMapper.selectMapList();
    }
 
    @Override
    public List<Res_Catalog> selectCatalog(Map<String, Object> map){
        return resThemeModuleMapper.selectCatalog(map);
    }
 
    @Override
    public List<Res_MainInfo> selectCatalogZiYuanList(Map<String, Object> map){
        return resThemeModuleMapper.selectCatalogZiYuanList(map);
    }
}