package com.landtool.lanbase.modules.res.service.impl; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.landtool.lanbase.modules.res.dao.Res_SymbolLibraryMapper; import com.landtool.lanbase.modules.res.entity.Res_SymbolLibrary; import com.landtool.lanbase.modules.res.service.ResSymbolLibraryService; @Service("resSymbolLibraryService") public class ResSymbolLibraryServiceImpl implements ResSymbolLibraryService { @Autowired private Res_SymbolLibraryMapper resSymbolLibraryMapper; @Override public Res_SymbolLibrary getByIdAndGeoType(Res_SymbolLibrary resSymbolLibrary) { return resSymbolLibraryMapper.getByIdAndGeoType(resSymbolLibrary); } @Override public int updateByPrimaryKey(Res_SymbolLibrary resSymbolLibrary) { return resSymbolLibraryMapper.updateByPrimaryKey(resSymbolLibrary); } @Override public List getAll() { return resSymbolLibraryMapper.getAll(); } @Override public List getListByGeoType(String geotype) { return resSymbolLibraryMapper.getListByGeoType(geotype); } @Override public List getList(Res_SymbolLibrary resSymbolLibrary) { return resSymbolLibraryMapper.getList(resSymbolLibrary); } @Override public Res_SymbolLibrary getById(Integer objectid) { return resSymbolLibraryMapper.getById(objectid); } @Override public List getMC() { return resSymbolLibraryMapper.getMC(); } }