|
@@ -3,6 +3,7 @@ package com.steerinfo.dil.mapper;
|
|
|
import com.steerinfo.dil.model.RmsPort;
|
|
|
import com.steerinfo.framework.mapper.IBaseMapper;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -21,8 +22,8 @@ public interface RmsPortMapper extends IBaseMapper<RmsPort, BigDecimal> {
|
|
|
List<Map<String, Object>> getPortType();
|
|
|
|
|
|
//边输边查港口名称
|
|
|
- List<Map<String, Object>> getPortName(String index);
|
|
|
+ List<Map<String, Object>> getPortName(@Param("index")String index);
|
|
|
|
|
|
//边输边查码头名称
|
|
|
- List<Map<String, Object>> getPierName(String index);
|
|
|
+ List<Map<String, Object>> getPierName(@Param("index")String index);
|
|
|
}
|