add: 输送机申请贴标demo
This commit is contained in:
@@ -197,4 +197,11 @@ public class AcsToWmsController {
|
||||
public ResponseEntity<Object> feedbackSubVolumeWeightApply(@RequestBody JSONObject param) {
|
||||
return new ResponseEntity<>(acsToWmsService.feedbackSubVolumeWeightApply(param), HttpStatus.OK);
|
||||
}
|
||||
|
||||
@PostMapping("/applicationForLabeling")
|
||||
@Log(value = "二期输送线申请贴标", isInterfaceLog = true, interfaceLogType = InterfaceLogType.ACS_TO_LMS)
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> applicationForLabeling(@RequestBody JSONObject param) {
|
||||
return new ResponseEntity<>(acsToWmsService.applicationForLabeling(param), HttpStatus.OK);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -188,4 +188,11 @@ public interface AcsToWmsService {
|
||||
* @return /
|
||||
*/
|
||||
JSONObject feedbackSubVolumeWeightApply(JSONObject param);
|
||||
|
||||
/**
|
||||
* 二期输送机申请贴标
|
||||
* @param param /
|
||||
* @return /
|
||||
*/
|
||||
JSONObject applicationForLabeling(JSONObject param);
|
||||
}
|
||||
|
||||
@@ -2152,4 +2152,9 @@ public class AcsToWmsServiceImpl implements AcsToWmsService {
|
||||
return res;
|
||||
}
|
||||
|
||||
@Override
|
||||
public JSONObject applicationForLabeling(JSONObject param) {
|
||||
return param;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user