This commit is contained in:
zhouz
2024-05-13 20:05:00 +08:00
3 changed files with 19 additions and 0 deletions

View File

@@ -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);
}
}

View File

@@ -188,4 +188,11 @@ public interface AcsToWmsService {
* @return /
*/
JSONObject feedbackSubVolumeWeightApply(JSONObject param);
/**
* 二期输送机申请贴标
* @param param /
* @return /
*/
JSONObject applicationForLabeling(JSONObject param);
}

View File

@@ -2140,4 +2140,9 @@ public class AcsToWmsServiceImpl implements AcsToWmsService {
return res;
}
@Override
public JSONObject applicationForLabeling(JSONObject param) {
return param;
}
}