AmsContaactPriceMaterialMapper.java 450 B

12345678910111213141516
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.AmsContaactPriceMaterial;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.math.BigDecimal;
  6. import java.util.List;
  7. import java.util.Map;
  8. @Mapper
  9. public interface AmsContaactPriceMaterialMapper extends IBaseMapper<AmsContaactPriceMaterial, BigDecimal> {
  10. List<Map<String, Object>> getMaterialName(BigDecimal priceId);
  11. }