package com.steerinfo.dil.mapper; import com.steerinfo.dil.model.TmstruckMeasureCommission; import com.steerinfo.framework.mapper.IBaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.math.BigDecimal; import java.util.List; import java.util.Map; @Mapper public interface TmstruckMeasureCommissionMapper extends IBaseMapper { //查询计量委托 List> getMeasureCommission(Map map); //查询最大主键Id @Select("select seq_measure_commission.nextval from dual") BigDecimal selectMaxId(); //查询采购计量委托 Map getCGMeasureCommission(Map map); //查询销售计量委托 Map getXSMeasureCommission(Map map); /* * from zhangXuan */ //销售查询计毛 Map selectMakesureGrossForSaleByOrderNumber(Map map); //销售查询计皮 Map selectMakesureTareForSaleByOrderNumber(Map map); //内转查询计皮 Map selectMakesureTareForConvertedByOrderNumber(Map map); //内转查询计毛 Map selectMakesureGrossForConvertedByOrderNumber(Map map); //采购查询计皮 Map selectMakesureGrossForPurchase(Map map); //采购查询计毛 Map selectMakesureTareForPurchase(Map map); }