package com.steerinfo.dil.service; import com.steerinfo.dil.model.BmsportHandlingFee; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * @Description: * @Author:HuJianGuo * @GreateTime:2021/9/27 14:14 * @Version:V2.0 */ public interface IBmsportHandlingFeeService { /** * 修改 * @param bmsportHandlingFee * @return */ int update(BmsportHandlingFee bmsportHandlingFee); /** * 删除 * @param feeId * @return */ int deleteByUpdate(BigDecimal feeId); /** * 新增 * @param map * @return */ int insert(Map map) throws Exception; /** * 展示港口装卸费列表 * @param mapValue * @return */ List> getPortHandlingFeeList(Map mapValue); /** * 查询最大id * @return */ BigDecimal selectMaxId(); /** * 得到修改渲染 * @param feeId * @return */ List> getFeeToUpdate(BigDecimal feeId); /** * 得到物资id下拉 * @return */ List> getMaterialId(); /** * 得到价格下拉 * @return */ List> getPriceId(); }