自动化立体仓库 - WCS系统
Junjie
2023-07-20 e9ed17ca2d5eaafe69704ee817817a539d847e78
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);
    }
}