ShippingCombinationMapper.java 326 Bytes
package com.huaheng.pc.shipment.shippingCombination.mapper;

import com.huaheng.pc.inventory.inventory.domain.Inventory;
import com.huaheng.pc.shipment.shippingCombination.domain.ShippingSearch;

import java.util.List;

public interface ShippingCombinationMapper {

    List<Inventory> getInventory(ShippingSearch search);

}