ConfigValueMapper.java 408 Bytes
package com.huaheng.pc.config.configValue.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.huaheng.pc.config.configValue.domain.ConfigValue;
import org.apache.ibatis.annotations.Param;

public interface ConfigValueMapper extends BaseMapper<ConfigValue> {
    public ConfigValue getConfigValue(@Param("warehouseCode") String warehouseCode, @Param("moduleType") String moduleType);
}