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> getCompanyMesByLike(Map map); List> getMaterialTypeByLike(Map map); List> getEmissionStandardByLike(Map map); List> getOperationPointByLike(Map map); List> getPersonnelByLike(Map map); List> getCapacityByLike(Map map); List> getTransRangeByLike(Map map); List> getrmsrmsjobinfosBylike(Map map); List getColumnNoRoutList(Map map); List getColumnHiddenData(Map map); List> getColumnShowData(Map map); List> getColumnAllData(Map map); List> getColumnAllScheme(Map map); String getWlUrl(); }