|
@@ -28,7 +28,8 @@ public interface TmsTrainFeign {
|
|
public Map<String, Object> getTmstrainWagonLoad(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
public Map<String, Object> getTmstrainWagonLoad(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
- @RequestParam("pageSize") Integer pageSize);
|
|
|
|
|
|
+ @RequestParam("pageSize") Integer pageSize,
|
|
|
|
+ @RequestParam("resultType") Integer resultType);
|
|
|
|
|
|
|
|
|
|
@PostMapping(value = "api/v1/trainTms/tmstrainloadingresults/insertTmstrainLoadingResult")
|
|
@PostMapping(value = "api/v1/trainTms/tmstrainloadingresults/insertTmstrainLoadingResult")
|
|
@@ -60,8 +61,8 @@ public interface TmsTrainFeign {
|
|
public Map<String, Object> getBatchId();
|
|
public Map<String, Object> getBatchId();
|
|
|
|
|
|
|
|
|
|
- @GetMapping(value = "api/v1/trainTms/tmstrainloadingresults/getWagonNo")
|
|
|
|
- public Map<String, Object> getWagonNo();
|
|
|
|
|
|
+ @GetMapping(value = "api/v1/trainTms/tmstrainloadingresults/getWagonNo/{resultType}")
|
|
|
|
+ public Map<String, Object> getWagonNo(@PathVariable("resultType")Integer resultType);
|
|
|
|
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -72,7 +73,8 @@ public interface TmsTrainFeign {
|
|
public Map<String, Object> getTmstrainWagonUnLoad(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
public Map<String, Object> getTmstrainWagonUnLoad(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
- @RequestParam("pageSize") Integer pageSize);
|
|
|
|
|
|
+ @RequestParam("pageSize") Integer pageSize,
|
|
|
|
+ @RequestParam("resultType") Integer resultType);
|
|
|
|
|
|
|
|
|
|
@PostMapping(value = "api/v1/trainTms/tmstrainwagonunloadresults/deleteTmstrainWagonUnLoadResultByUnLoadingId")
|
|
@PostMapping(value = "api/v1/trainTms/tmstrainwagonunloadresults/deleteTmstrainWagonUnLoadResultByUnLoadingId")
|
|
@@ -115,7 +117,9 @@ public interface TmsTrainFeign {
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
- @RequestParam("status") Integer status);
|
|
|
|
|
|
+ @RequestParam("status") Integer status,
|
|
|
|
+ @RequestParam("resultType") Integer resultType
|
|
|
|
+ );
|
|
|
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getWagonPleaseById/{resultId}")
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getWagonPleaseById/{resultId}")
|
|
public Map<String, Object> getWagonPleaseById(@PathVariable("resultId")Integer resultId);
|
|
public Map<String, Object> getWagonPleaseById(@PathVariable("resultId")Integer resultId);
|
|
@@ -147,7 +151,9 @@ public interface TmsTrainFeign {
|
|
public Map<String, Object> getApproveAllWagonPlease(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
public Map<String, Object> getApproveAllWagonPlease(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
- @RequestParam("pageSize") Integer pageSize);
|
|
|
|
|
|
+ @RequestParam("pageSize") Integer pageSize,
|
|
|
|
+ @RequestParam("resultType") Integer resultType
|
|
|
|
+ );
|
|
|
|
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getApproveWagonPleaseById/{resultId}")
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getApproveWagonPleaseById/{resultId}")
|
|
public Map<String, Object> getApproveWagonPleaseById(@PathVariable("resultId")Integer resultId);
|
|
public Map<String, Object> getApproveWagonPleaseById(@PathVariable("resultId")Integer resultId);
|
|
@@ -170,7 +176,8 @@ public interface TmsTrainFeign {
|
|
Map<String,Object> getTmstrainWagonLoadForConverted(@RequestBody(required=false)
|
|
Map<String,Object> getTmstrainWagonLoadForConverted(@RequestBody(required=false)
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
- @RequestParam("pageSize") Integer pageSize);
|
|
|
|
|
|
+ @RequestParam("pageSize") Integer pageSize
|
|
|
|
+ );
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getPleasePlanByResultId/{resultId}")
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getPleasePlanByResultId/{resultId}")
|
|
Map<String,Object> getPleasePlanByResultId(@PathVariable("resultId")BigDecimal resultId);
|
|
Map<String,Object> getPleasePlanByResultId(@PathVariable("resultId")BigDecimal resultId);
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getApproveByResultId/{resultId}")
|
|
@PostMapping ("api/v1/trainTms/tmstrainpleaseapproveresults/getApproveByResultId/{resultId}")
|