add: 输送机申请贴标demo

This commit is contained in:
2024-05-13 11:10:46 +08:00
parent 0c0eda5d8e
commit 3282f15af7
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

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