|
|
|
@ -10,13 +10,11 @@ import lombok.AllArgsConstructor;
|
|
|
|
|
import org.springblade.core.mp.support.BladePage; |
|
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
|
import org.springblade.core.mp.support.Query; |
|
|
|
|
import org.springblade.core.secure.utils.AuthUtil; |
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
import springfox.documentation.annotations.ApiIgnore; |
|
|
|
|
|
|
|
|
|
import java.util.Collections; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Set; |
|
|
|
|
|
|
|
|
@ -131,4 +129,9 @@ public class WarehouseWaybillClient implements IWarehouseWaybillClient {
|
|
|
|
|
public List<WarehouseWaybillVO> findWaybillVOByWaybillNoSet(Set<String> allWaybillNoSet) { |
|
|
|
|
return warehouseWaybillService.findWaybillVOByWaybillNoSet(allWaybillNoSet); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void updateWaybillCondigneeId(Long waybillId, Long newConsigneeId) { |
|
|
|
|
warehouseWaybillService.updateWaybillCondigneeId(waybillId,newConsigneeId); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|