Blame view

src/main/java/com/huaheng/api/wcs/service/warecellAllocation/WarecellAllocationService.java 465 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();
pengcheng authored
13
14
    //去向分配
    AjaxResult destinationAllocation(WcsTask wcsTask);
游杰 authored
15
pengcheng authored
16
}