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.

26 lines
606 B

6 months ago
  1. package com.gaotao.modules.transit.service;
  2. import com.gaotao.modules.transit.entity.TransitRecordDto;
  3. import com.gaotao.modules.transit.entity.TransitLabelDto;
  4. import com.gaotao.modules.transit.entity.TransitReceiveDto;
  5. /**
  6. * 移库服务接口
  7. */
  8. public interface TransitService {
  9. /**
  10. * 获取移库记录
  11. */
  12. TransitRecordDto getTransitRecord(String transactionId, String site);
  13. /**
  14. * 扫描移库标签
  15. */
  16. TransitLabelDto scanTransitLabel(TransitLabelDto dto);
  17. /**
  18. * 确认移库接收
  19. */
  20. void confirmTransitReceive(TransitReceiveDto dto);
  21. }