自动化立体仓库 - WCS系统
Junjie
2023-08-10 0e9686edc067b0779562bfa2452d49daf4cb7b18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.system.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.system.entity.Config;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface ConfigService extends IService<Config> {
 
    Config selectByCode(String code);
 
    List<Config> selectByCodes(@Param("codes") List<String> codes);
 
}