You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
525 B

package com.gaotao.modules.automatedWarehouse.service;
/**
* @Description 配送任务服务接口 - rqrq
* @Author rqrq
* @Date 2025/11/14
*/
public interface DeliveryTaskService {
/**
* @Description 创建配送任务(根据栈板物料自动判断目标点位)- rqrq
* @Title createDeliveryTaskByPallet
* @param site 工厂编码
* @param palletId 栈板编码
* @author rqrq
* @date 2025/11/14
*/
void createDeliveryTaskByPallet(String site, String palletId) ;
}