DilCidCapacityMapper.java 505 B

123456789101112131415161718
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.DilCidCapacity;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Select;
  7. @Mapper
  8. public interface DilCidCapacityMapper extends IBaseMapper<DilCidCapacity, BigDecimal> {
  9. @Select("select seq_dil_cid_capacityNo.nextval from dual")
  10. BigDecimal getCidMax();
  11. Integer selectByCidAndCapacityNo(String cid, String capacityNo);
  12. }