#
Junjie
2025-04-27 e377f0ffba61c38f4f171d99e9ab6c3591f1d1b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.zy.system.entity.Config;
import com.zy.system.mapper.ConfigMapper;
import com.zy.system.service.ConfigService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service("configService")
public class ConfigServiceImpl extends ServiceImpl<ConfigMapper, Config> implements ConfigService {
 
    @Override
    public Config selectByCode(String code) {
        return this.baseMapper.selectByCode(code);
    }
 
    @Override
    public List<Config> selectByCodes(List<String> codes) {
        return this.baseMapper.selectByCodes(codes);
    }
}