|
@@ -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 BmstruckDetailsOrderMapper extends IBaseMapper<BmstruckDetailsOrder, BigDecimal> {
|
|
@@ -63,4 +64,7 @@ public interface BmstruckDetailsOrderMapper extends IBaseMapper<BmstruckDetailsO
|
|
|
* @return
|
|
|
*/
|
|
|
BigDecimal getNetWeight(BigDecimal orderId);
|
|
|
+
|
|
|
+ @Select("select seq_BMSTRUCK_DETAIL.nextval from dual")
|
|
|
+ BigDecimal selectDetailsId();
|
|
|
}
|