| 12345678910111213141516 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.AmsContaactPriceMaterial;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Map;
- @Mapper
- public interface AmsContaactPriceMaterialMapper extends IBaseMapper<AmsContaactPriceMaterial, BigDecimal> {
- List<Map<String, Object>> getMaterialName(BigDecimal priceId);
- }
|