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_OneMap_CatalogMapper; import com.landtool.lanbase.modules.res.entity.Res_OneMap_Catalog; import com.landtool.lanbase.modules.res.service.ResOnemapCatalogService; @Service("resOnemapCatalogService") public class ResOnemapCatalogServiceImpl implements ResOnemapCatalogService { @Autowired private Res_OneMap_CatalogMapper resOneMapCatalogMapper; @Override public int deleteByPrimaryKey(Integer catalogid) { return resOneMapCatalogMapper.deleteByPrimaryKey(catalogid); } @Override public int insert(Res_OneMap_Catalog record) { return resOneMapCatalogMapper.insert(record); } @Override public int insertSelective(Res_OneMap_Catalog record) { return resOneMapCatalogMapper.insertSelective(record); } @Override public Res_OneMap_Catalog selectByPrimaryKey(Integer catlogid) { return resOneMapCatalogMapper.selectByPrimaryKey(catlogid); } @Override public int updateByPrimaryKey(Res_OneMap_Catalog record) { return resOneMapCatalogMapper.updateByPrimaryKey(record); } @Override public int updateByPrimaryKeySelective(Res_OneMap_Catalog record) { return resOneMapCatalogMapper.updateByPrimaryKeySelective(record); } @Override public List selectResCatalogToParentid(Map map) { return resOneMapCatalogMapper.selectResCatalogToParentid(map); } @Override public int selectResCatalogIsExistsSon(Map map) { return resOneMapCatalogMapper.selectResCatalogIsExistsSon(map); } @Override public Res_OneMap_Catalog getResCatalogInfoById(int catlogId) { return resOneMapCatalogMapper.getResCatalogInfoById(catlogId); } @Override public String getMaxCATLOGCODEFromMainIndex(int id) {return resOneMapCatalogMapper.getMaxCATLOGCODEFromMainIndex(id);} @Override public String getMaxOrderIdFromMainIndex(int id) {return resOneMapCatalogMapper.getMaxOrderIdFromMainIndex(id);} @Override public String getMaxOrderId(int id) { return resOneMapCatalogMapper.getMaxOrderId(id); } @Override public List getCatalogExistsResource(Map map) { return resOneMapCatalogMapper.getCatalogExistsResource(map); } @Override public int selectMuLuZiYuanCount(Map map){ return resOneMapCatalogMapper.selectMuLuZiYuanCount(map); } @Override public List selectCatalogsByid(Map map){ return resOneMapCatalogMapper.selectCatalogsByid(map); } @Override public int checkDiyCatalog(Map map) { return resOneMapCatalogMapper.checkDiyCatalog(map); } @Override public List getThemeCataLog(Map map) { return resOneMapCatalogMapper.getThemeCataLog(map); } }