#
Junjie
2024-05-18 a7d5e6c4a45ca1f7bb1560ef4e76f4c1680c41db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.common.sys.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zy.asrs.common.sys.entity.Config;
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);
    }
 
}