package com.steerinfo.dil.service; import com.steerinfo.framework.controller.RESTfulResult; import com.steerinfo.framework.service.IBaseService; import com.steerinfo.dil.model.DilBatch; import java.util.Date; import java.math.BigDecimal; import java.util.List; import java.util.Map; /** * DilBatch服务接口: * @author generator * @version 1.0-SNAPSHORT 2021-11-06 10:22 * 类描述 * 修订历史: * 日期:2021-11-06 * 作者:generator * 参考: * 描述:DilBatch服务接口 * @see null * @Copyright 湖南视拓信息技术股份有限公司. All rights reserved. */ public interface IDilBatchService { //展示批次列表 List> getBatchList(Map map); //查询货权转移和提货委托出现的批次id List> getBatchListFortTransfer(Map map); //根据用户输入模糊查询江船船名 List> getShipNameList(String state); //新增批次 Map insertBatchId(Map map); List> getBatchIdByForeign(Map mapValue); }