package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.AmstruckInwardPlan; import com.steerinfo.framework.mapper.IBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.math.BigDecimal; import java.util.List; import java.util.Map; @Mapper public interface AmstruckInwardPlanMapper extends IBaseMapper { @Select("select seq_inward_plan.nextval from dual") BigDecimal selectOtherId(); //展示运输计划 List> getTruckPlanList(Map mapValue); // 查询修改渲染 List> selectInwardPlanToUpdate(BigDecimal planId); List> getCarrierList(); List> getIssuedPlanList(Map mapValue); List> getIssuedPlanList2(Map mapValue); List> getPlanOrder(Map mapValue); }