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

9 months ago
  1. package com.gaotao.modules.automatedWarehouse.service;
  2. /**
  3. * @Description 配送任务服务接口 - rqrq
  4. * @Author rqrq
  5. * @Date 2025/11/14
  6. */
  7. public interface DeliveryTaskService {
  8. /**
  9. * @Description 创建配送任务根据栈板物料自动判断目标点位- rqrq
  10. * @Title createDeliveryTaskByPallet
  11. * @param site 工厂编码
  12. * @param palletId 栈板编码
  13. * @author rqrq
  14. * @date 2025/11/14
  15. */
  16. void createDeliveryTaskByPallet(String site, String palletId) ;
  17. }