1234567891011121314 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.MeasureJsonData;
- import com.steerinfo.dil.model.TmstruckEnfactoryResult;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import java.math.*;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Select;
- @Mapper
- public interface MeasureJsonDataMapper extends IBaseMapper<MeasureJsonData, BigDecimal>{
- @Select("select seq_MEASUER_JSON_DATA.nextval from dual")
- BigDecimal selectMaxId();
- }
|