MeasureJsonDataMapper.java 492 B

1234567891011121314
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.MeasureJsonData;
  3. import com.steerinfo.dil.model.TmstruckEnfactoryResult;
  4. import com.steerinfo.framework.mapper.IBaseMapper;
  5. import java.math.*;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Select;
  8. @Mapper
  9. public interface MeasureJsonDataMapper extends IBaseMapper<MeasureJsonData, BigDecimal>{
  10. @Select("select seq_MEASUER_JSON_DATA.nextval from dual")
  11. BigDecimal selectMaxId();
  12. }