BmstruckFormulaMapper.java 615 B

1234567891011121314151617181920212223242526
  1. package com.steerinfo.dil.mapper;
  2. import com.steerinfo.dil.model.BmstruckFormula;
  3. import com.steerinfo.framework.mapper.IBaseMapper;
  4. import java.math.*;
  5. import java.util.Map;
  6. import org.apache.ibatis.annotations.Mapper;
  7. @Mapper
  8. public interface BmstruckFormulaMapper extends IBaseMapper<BmstruckFormula, BigDecimal> {
  9. /**
  10. * 查询汽运计费公式
  11. * @param formulaId
  12. * @return
  13. */
  14. String getTruckFormula(BigDecimal formulaId);
  15. /**
  16. * 查询计费公式和名称
  17. * @param formulaId
  18. * @return
  19. */
  20. Map<String, Object> selectAnyFormula(BigDecimal formulaId);
  21. }