Blame view

src/main/java/com/huaheng/api/wcs/service/warecellAllocation/WarecellAllocationService.java 510 Bytes
pengcheng authored
1
2
3
4
package com.huaheng.api.wcs.service.warecellAllocation;

import com.huaheng.api.wcs.domain.WcsTask;
import com.huaheng.framework.web.domain.AjaxResult;
5
import com.huaheng.pc.receipt.receiptContainerDetail.domain.ReceiptContainerDetail;
pengcheng authored
6
7
8

public interface WarecellAllocationService {
mahuandong authored
9
10
    /**仓位分配*/
    AjaxResult warecellAllocation(WcsTask wcsTask);
11
12

    String taskPositioning(ReceiptContainerDetail receiptContainerDetail);
pengcheng authored
13
14
15

    //去向分配
    AjaxResult destinationAllocation(WcsTask wcsTask);
pengcheng authored
16
}