| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.zy.asrs.common.sys.entity.Config; |
| | | import com.zy.asrs.common.sys.dao.ConfigMapper; |
| | | import com.zy.asrs.common.sys.mapper.ConfigMapper; |
| | | import com.zy.asrs.common.sys.service.ConfigService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service("configService") |
| | | public class ConfigServiceImpl extends ServiceImpl<ConfigMapper, Config> implements ConfigService { |
| | | |
| | | @Override |
| | | public Config selectByCode(String code) { |
| | | return this.baseMapper.selectByCode(code); |
| | | } |
| | | |
| | | } |