This commit is contained in:
2022-10-09 19:18:19 +08:00
parent 6afca9aa56
commit da5a62f51b

View File

@@ -4,12 +4,13 @@ import com.alibaba.fastjson.JSONObject;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.nl.wms.pda.mps.service.CasingService;
import org.nl.wms.pda.mps.service.ShippingService;
import org.springframework.stereotype.Service;
@Service
@RequiredArgsConstructor
@Slf4j
public class ShippingServiceImpl implements CasingService {
public class ShippingServiceImpl implements ShippingService {
@Override
@@ -20,6 +21,14 @@ public class ShippingServiceImpl implements CasingService {
return result;
}
@Override
public JSONObject needVehicle(JSONObject whereJson) {
JSONObject result = new JSONObject();
result.put("code", "1");
result.put("desc", "查询成功");
return result;
}
@Override
public JSONObject confirm(JSONObject whereJson) {
JSONObject result = new JSONObject();