Blame view

src/main/java/com/huaheng/api/wcs/service/warecellAllocation/WarecellAllocationService.java 432 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
9
10

public interface WarecellAllocationService {

    //仓位分配
    AjaxResult WarecellAllocation(WcsTask wcsTask);
11
12

    String taskPositioning(ReceiptContainerDetail receiptContainerDetail);
pengcheng authored
13
}