自动化立体仓库 - WMS系统
pang.jiabao
2025-09-02 00cc82a39a3ef1a21d5e5523c822e0a5d2957f89
src/main/java/com/zy/system/mapper/ConfigMapper.java
@@ -3,10 +3,14 @@
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.system.entity.Config;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@Mapper
@Repository
public interface ConfigMapper extends BaseMapper<Config> {
    /**
     * 根据编码查询配置详情
     */
    Config selectConfigByCode(@Param("code") String code);
}