ShippingCombinationService.java
724 Bytes
package com.huaheng.pc.shipment.shippingCombination.service;
import com.huaheng.pc.inventory.inventoryDetail.domain.InventoryDetail;
import com.huaheng.pc.shipment.shippingCombination.domain.ShippingSearch;
import com.huaheng.pc.shipment.shippingCombination.mapper.ShippingCombinationMapper;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class ShippingCombinationService {
@Resource
private ShippingCombinationMapper shippingCombinationMapper;
public List<InventoryDetail> getInventorys(ShippingSearch search) {
// List<InventoryDetail> list = shippingCombinationMapper.getInventorys(search);
return null;
}
}