package com.steerinfo.dil.mapper; import org.apache.ibatis.annotations.Param; import org.mapstruct.Mapper; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * 通用接口 * @ author :TXF * @ time :2021/10/19 18:03 */ @Mapper public interface UniversalMapper { //查询所有的门岗(下拉框) List> getAllGatepost(); //查询所有的汽车衡(下拉框) List> getAllCalculateMes(); //查询所有的仓库(下拉框) List> getAllWareHouse(); List getColumnNoRoutList(Map map); List getColumnHiddenData(Map map); List> getColumnShowData(Map map); List> getColumnAllData(Map map); List> getColumnAllScheme(Map map); String getWlUrl(); }