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

package com.gaotao.modules.transit.service;
import com.gaotao.modules.transit.entity.TransitRecordDto;
import com.gaotao.modules.transit.entity.TransitLabelDto;
import com.gaotao.modules.transit.entity.TransitReceiveDto;
/**
* 移库服务接口
*/
public interface TransitService {
/**
* 获取移库记录
*/
TransitRecordDto getTransitRecord(String transactionId, String site);
/**
* 扫描移库标签
*/
TransitLabelDto scanTransitLabel(TransitLabelDto dto);
/**
* 确认移库接收
*/
void confirmTransitReceive(TransitReceiveDto dto);
}