|
@@ -4,6 +4,7 @@ import com.steerinfo.dil.model.BmstrainDetailsStatement;
|
|
|
import com.steerinfo.framework.mapper.IBaseMapper;
|
|
|
import java.math.*;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.apache.ibatis.annotations.Select;
|
|
|
|
|
|
@Mapper
|
|
|
public interface BmstrainDetailsStatementMapper extends IBaseMapper<BmstrainDetailsStatement, BigDecimal> {
|
|
@@ -20,4 +21,7 @@ public interface BmstrainDetailsStatementMapper extends IBaseMapper<BmstrainDeta
|
|
|
* @return
|
|
|
*/
|
|
|
BigDecimal selectMaxId();
|
|
|
+
|
|
|
+ @Select("select seq_BMSTRAIN_DETAIL_STATEMENT.nextval from dual")
|
|
|
+ BigDecimal selectDetailsStatementId();
|
|
|
}
|