package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.RmsReceivePlace; import com.steerinfo.framework.mapper.IBaseMapper; import java.math.*; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; @Mapper public interface RmsReceivePlaceMapper extends IBaseMapper { // 得到具体地址主键id BigDecimal getPlaceId(Map mapValue); @Select("select seq_RMS_RECEIVE_PLACE.nextval from dual") BigDecimal selectMaxId(); }