RmsReceivePlaceMapper.java 550 B

123456789101112131415161718
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.RmsReceivePlace;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import java.util.Map;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Select;
  8. @Mapper
  9. public interface RmsReceivePlaceMapper extends IBaseMapper<RmsReceivePlace, BigDecimal> {
  10. // 得到具体地址主键id
  11. BigDecimal getPlaceId(Map<String,Object> mapValue);
  12. @Select("select seq_RMS_RECEIVE_PLACE.nextval from dual")
  13. BigDecimal selectMaxId();
  14. }