|
@@ -8,6 +8,7 @@ import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
|
+import java.util.HashMap;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -826,4 +827,29 @@ public interface TmsshipFeign {
|
|
|
|
|
|
@PostMapping(value = "api/v1/shipTms/dilbatchs/getNoticeContactNumberByPerson")
|
|
@PostMapping(value = "api/v1/shipTms/dilbatchs/getNoticeContactNumberByPerson")
|
|
Map<String, Object> getNoticeContactNumberByPerson(@RequestParam("personName") String personName);
|
|
Map<String, Object> getNoticeContactNumberByPerson(@RequestParam("personName") String personName);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @PostMapping("/api/v1/shipTms/tmsshiptotalresults/addPleaseResult")
|
|
|
|
+ Map<String,Object> addPleaseResult(@RequestBody(required = false) Map<String, Object> mapVal);
|
|
|
|
+
|
|
|
|
+ @PostMapping("/api/v1/shipTms/tmsshiptotalresults/editPleaseResult")
|
|
|
|
+ Map<String,Object> editPleaseResult(@RequestBody(required = false) Map<String, Object> mapVal);
|
|
|
|
+
|
|
|
|
+ @PostMapping("/api/v1/shipTms/tmsshiptotalresults/getAllPleaseResult")
|
|
|
|
+ Map<String,Object> getAllPleaseResult(@RequestBody(required = false) Map<String, Object> mapVal,
|
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
|
+ @RequestParam Integer apiId,
|
|
|
|
+ @RequestParam String con,
|
|
|
|
+ @RequestParam String startTime,
|
|
|
|
+ @RequestParam String endTime);
|
|
|
|
+
|
|
|
|
+ @PostMapping(value = "/api/v1/shipTms/tmsshiptotalresults/getPleaseResult/{resultId}")
|
|
|
|
+ Map<String, Object> getPleaseResult(@PathVariable("resultId") BigDecimal resultId);
|
|
|
|
+
|
|
|
|
+ @PostMapping(value = "/api/v1/shipTms/tmsshiptotalresults/getRealNumber")
|
|
|
|
+ Map<String, Object> getRealNumber(Map<String, Object> map);
|
|
|
|
+
|
|
|
|
+ @PostMapping(value = "/api/v1/shipTms/shipdynamics/getWagonWork")
|
|
|
|
+ Map<String, Object> getWagonWork(Map<String, Object> map);
|
|
}
|
|
}
|