package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.BmsportHandlingFee; import com.steerinfo.framework.mapper.IBaseMapper; import java.math.*; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; @Mapper public interface BmsportHandlingFeeMapper extends IBaseMapper { /** * 展示港口装卸费列表 * @param mapValue * @return */ List> getPortHandlingFeeList(Map mapValue); /** * 得到修改渲染 * @param feeId * @return */ List> getFeeToUpdate(BigDecimal feeId); /** * 得到物资id下拉 * @return */ List> getMaterialId(); /** * 得到价格id * @return */ List> getPriceId(); /** * 查询最大id * @return */ BigDecimal selectMaxId(); /** * 得到单价id下拉 * @return */ List> selectPriceId(); List> selectPortFeeSecondList(Map map); String downloadBmsshipOrder(Integer resultId); //根据id渲染数据 List> getBmsshipFee(Integer id); }