TmstrainQualityResultMapper.java 608 B

1234567891011121314151617181920
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.TmstrainQualityResult;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import java.util.List;
  6. import java.util.Map;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Select;
  9. @Mapper
  10. public interface TmstrainQualityResultMapper extends IBaseMapper<TmstrainQualityResult, Short> {
  11. //查看未质检的火车实绩
  12. List<Map<String, Object>> selectWzInputId();
  13. // 获取主键id
  14. @Select("select seq_TMSTRAIN_QUALITY_RESULT.nextval from dual")
  15. BigDecimal selectMaxId();
  16. }