|
@@ -125,8 +125,9 @@ public interface TmsTrainFeign {
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("status") Integer status,
|
|
|
- @RequestParam("resultType") Integer resultType,
|
|
|
- @RequestParam("con") String con
|
|
|
+ @RequestParam("resultType") Integer resultType,
|
|
|
+ @RequestParam("resultId") Integer resultId,
|
|
|
+ @RequestParam("con") String con
|
|
|
);
|
|
|
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getWagonPleaseById/{resultId}")
|
|
@@ -160,8 +161,9 @@ public interface TmsTrainFeign {
|
|
|
@RequestParam("apiId") Integer apiId,
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
- @RequestParam("resultType") Integer resultType,
|
|
|
- @RequestParam("con") String con
|
|
|
+ @RequestParam("resultType") Integer resultType,
|
|
|
+ @RequestParam("status") Integer status,
|
|
|
+ @RequestParam("con") String con
|
|
|
);
|
|
|
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getApproveWagonPleaseById/{resultId}")
|
|
@@ -176,19 +178,25 @@ public interface TmsTrainFeign {
|
|
|
|
|
|
@PostMapping("api/v1/trainTms/tmstrainpleaseapproveresults/deleteApproveWagonPlease/{resultId}")
|
|
|
public Map<String, Object> deleteApproveWagonPlease(@PathVariable("resultId") Integer resultId);
|
|
|
+
|
|
|
//*****************************************内转物流***************************************************
|
|
|
+
|
|
|
@PostMapping("api/v1/trainTms/tmstrainloadingresults/addTrainLoadResultForConverted")
|
|
|
Map<String,Object> addTrainLoadResultForConverted(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult);
|
|
|
+
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainloadingresults/selectLoadByResultId/{resultId}")
|
|
|
Map<String,Object> selectLoadByResultId(@PathVariable("resultId")BigDecimal resultId);
|
|
|
+
|
|
|
@PostMapping("api/v1/trainTms/tmstrainloadingresults/getTmstrainWagonLoadForConverted")
|
|
|
Map<String,Object> getTmstrainWagonLoadForConverted(@RequestBody(required=false)
|
|
|
@RequestParam("apiId") Integer apiId,
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("con") String con);
|
|
|
+
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getPleasePlanByResultId/{resultId}")
|
|
|
Map<String,Object> getPleasePlanByResultId(@PathVariable("resultId")BigDecimal resultId);
|
|
|
+
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getApproveByResultId/{resultId}")
|
|
|
Map<String,Object> getApproveByResultId(@PathVariable("resultId")BigDecimal resultId);
|
|
|
|
|
@@ -198,11 +206,25 @@ public interface TmsTrainFeign {
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("con") String con);
|
|
|
+
|
|
|
@PostMapping("api/v1/trainTms/tmstrainwagonunloadresults/selectTrainUnLoadResultForConverted")
|
|
|
- Map<String,Object> selectTrainUnLoadResultForConverted(@RequestParam("apiId") Integer apiId,
|
|
|
+ Map<String,Object> selectTrainUnLoadResultForConverted(
|
|
|
+ @RequestParam("apiId") Integer apiId,
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("con") String con);
|
|
|
- @PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/addWagonApprove")
|
|
|
- Map<String,Object> addWagonApprove(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult);
|
|
|
+ @PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/addWagonPleaseForNZ")
|
|
|
+ Map<String,Object> addPleaseForNZ(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult);
|
|
|
+
|
|
|
+ @PostMapping(value = "api/v1/trainTms/tmstrainwagonunloadresults/addTmsTrainUnloadResultForNZ")
|
|
|
+ Map<String, Object> addTmsTrainUnloadResultForNZ(@RequestBody(required = false)Map<String, Object> map);
|
|
|
+
|
|
|
+ @PostMapping(value = "api/v1/trainTms/tmstrainloadingresults/getMaterialAndCarByLoadingId")
|
|
|
+ Map<String, Object> getMaterialAndCarByLoadingId(
|
|
|
+ @RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ @RequestParam("apiId") Integer apiId,
|
|
|
+ @RequestParam("pageNum") Integer pageNum,
|
|
|
+ @RequestParam("pageSize") Integer pageSize,
|
|
|
+ @RequestParam("loadingId")Integer loadingId,
|
|
|
+ @RequestParam("unloadingId")Integer unloadingId);
|
|
|
}
|