|
@@ -2591,4 +2591,48 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.updateThreeSectionDetails(mapVal);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/addPleaseResult")
|
|
|
+ public Map<String,Object> addPleaseResult(@RequestBody(required = false) Map<String, Object> mapVal){
|
|
|
+ if (mapVal == null) {
|
|
|
+ mapVal = new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.addPleaseResult(mapVal);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/editPleaseResult")
|
|
|
+ public Map<String,Object> editPleaseResult(@RequestBody(required = false) Map<String, Object> mapVal){
|
|
|
+ if (mapVal == null) {
|
|
|
+ mapVal = new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.editPleaseResult(mapVal);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getAllPleaseResult")
|
|
|
+ public Map<String,Object> getAllPleaseResult(@RequestBody(required = false) Map<String, Object> mapVal,
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
+ @RequestParam Integer apiId,
|
|
|
+ String con,
|
|
|
+ String startTime,
|
|
|
+ String endTime){
|
|
|
+ if (mapVal == null) {
|
|
|
+ mapVal = new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.getAllPleaseResult(mapVal,pageNum,pageSize,apiId,con,startTime,endTime);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getPleaseResult/{resultId}")
|
|
|
+ public Map<String,Object> getPleaseResult(@PathVariable("resultId") BigDecimal resultId){
|
|
|
+ return tmsshipFeign.getPleaseResult(resultId);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getRealNumber")
|
|
|
+ public Map<String,Object> getRealNumber(@RequestBody(required = false) Map<String, Object> map){
|
|
|
+ return tmsshipFeign.getRealNumber(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getWagonWork")
|
|
|
+ public Map<String,Object> getWagonWork(@RequestBody(required = false) Map<String, Object> map){
|
|
|
+ return tmsshipFeign.getWagonWork(map);
|
|
|
+ }
|
|
|
}
|