|
@@ -7,6 +7,7 @@ import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.apache.ibatis.annotations.Select;
|
|
|
|
|
|
@Mapper
|
|
|
public interface AmsContractTransportPriceMapper extends IBaseMapper<AmsContractTransportPrice, BigDecimal> {
|
|
@@ -99,4 +100,7 @@ public interface AmsContractTransportPriceMapper extends IBaseMapper<AmsContract
|
|
|
List<Map<String, Object>> getPriceValueAndPriceTonKilometer();
|
|
|
// //通过主键修改吨公里数
|
|
|
// int updatePriceTonKilometer(BigDecimal priceId);
|
|
|
+
|
|
|
+ @Select("select seq_AMS_TRANSPORT.nextval from dual")
|
|
|
+ BigDecimal selectTransportId();
|
|
|
}
|