package com.stylefeng.guns.modular.smallLogistics.server; import com.baomidou.mybatisplus.service.IService; import com.stylefeng.guns.modular.smallLogistics.model.OrderLogisticsSpread; import java.util.Map; public interface IOrderLogisticsSpreadService extends IService { /** * 获取差价信息 * @param orderLogisticsId * @return * @throws Exception */ OrderLogisticsSpread query(Integer orderLogisticsId) throws Exception; }