RmsSupplierMapper.java 672 B

1234567891011121314151617181920212223
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.RmsSupplier;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Select;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. import java.util.Map;
  9. @Mapper
  10. public interface RmsSupplierMapper extends IBaseMapper<RmsSupplier, BigDecimal> {
  11. @Select("select seq__RMS_SUPPLIER.nextval from dual")
  12. BigDecimal getSupplierId();
  13. @Override
  14. List<RmsSupplier> selectByParameters(Map<String, Object> parameters);
  15. // 查询供应商列表
  16. List<Map<String, Object>> getSupplierList(Map<String, Object> mapVal);
  17. }