#
Junjie
2024-09-07 8eba3203511d8edbc5ee04aa82eceeaa3e38f889
zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/WorkService.java
@@ -1,7 +1,10 @@
package com.zy.asrs.wms.asrs.service;
import com.zy.asrs.wms.asrs.entity.Loc;
import com.zy.asrs.wms.asrs.entity.param.FieldParam;
import com.zy.asrs.wms.asrs.entity.param.GeneratePakInParam;
import java.util.List;
public interface WorkService {
@@ -17,6 +20,9 @@
    //生成可用库位号
    Loc generateLoc(Long taskType, String barcode, Integer locTypeHeight);
    //生成可用库位号
    Loc generateLoc(Long taskType, Long matId, String batch, List<FieldParam> uniqueFields, Integer locTypeHeight);
    //生成入库任务(满托盘)
    boolean generatePakIn(GeneratePakInParam param);
@@ -29,4 +35,7 @@
    //取消任务
    boolean cancelTask(Long taskId);
    //拣料任务
    boolean pickTask(Long taskId);
}