修改
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user