1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.java110.store.bmo.allocation;
|
| import com.java110.dto.purchase.AllocationStorehouseDto;
|
| public interface IAllocationBMO {
|
| /**
| * 调拨
| * @param tmpAllocationStorehouseDto
| * @param allocationStock
| */
| void doToAllocationStorehouse(AllocationStorehouseDto tmpAllocationStorehouseDto, double allocationStock);
| }
|
|