Blame view

src/main/java/com/huaheng/pc/shipment/shippingCombination/mapper/ShippingCombinationMapper.java 346 Bytes
pengcheng authored
1
2
3
package com.huaheng.pc.shipment.shippingCombination.mapper;
xqs authored
4
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
pengcheng authored
5
6
7
8
import com.huaheng.pc.shipment.shippingCombination.domain.ShippingSearch;

import java.util.List;
pengcheng authored
9
10
public interface ShippingCombinationMapper {
pengcheng authored
11
12
    List<InventoryDetail> getInventorys(ShippingSearch search);
pengcheng authored
13
}