|
@@ -707,49 +707,55 @@ public interface AmsFeign {
|
|
|
/*
|
|
|
AmstruckPurplanController中所有接口
|
|
|
*/
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/getAllPurPlan")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/getAllPurPlan")
|
|
|
RESTfulResult getAllPurPlan(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
@RequestParam("apiId") Integer apiId,
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("status") Integer status);
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/getAllPurPlan/{apiId}")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/getAllPurPlan/{apiId}")
|
|
|
public RESTfulResult getDetailListByCon(@PathVariable("apiId") Integer apiId,
|
|
|
@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
@RequestParam("pageNum")Integer pageNum,
|
|
|
@RequestParam("pageSize")Integer pageSize,
|
|
|
@RequestParam("con")String con);
|
|
|
|
|
|
- @PostMapping ("api/v1/truckTms/amstruckpurplans/getPurPlanById/{planId}")
|
|
|
+ @PostMapping ("api/v1/ams/amstruckpurplans/getPurPlanById/{planId}")
|
|
|
public RESTfulResult getPurPlanById(@PathVariable("planId")Integer planId);
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/addPurPlan")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/addPurPlan")
|
|
|
public RESTfulResult addPurPlan(@RequestBody Map<String, Object> map);
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/sendPurPlan/{planId}")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/sendPurPlan/{planId}")
|
|
|
public RESTfulResult sendPurPlan(@PathVariable("planId")Integer planId);
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/receptionPurPlan/{planId}")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/receptionPurPlan/{planId}")
|
|
|
public RESTfulResult receptionPurPlan(@PathVariable("planId")Integer planId);
|
|
|
|
|
|
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/deletePurPlan/{planId}")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/deletePurPlan/{planId}")
|
|
|
public RESTfulResult deletePurPlan(@PathVariable("planId")Integer planId);
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/amstruckpurplans/getDecomposedPlan")
|
|
|
+ @PostMapping("api/v1/ams/amstruckpurplans/getDecomposedPlan")
|
|
|
public RESTfulResult getDecomposedPlan(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
@RequestParam("apiId") Integer apiId,
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("planId") Integer planId,
|
|
|
@RequestParam("status") Integer status);
|
|
|
+
|
|
|
//*****************************************内转物流**************************************
|
|
|
//查询汽运单价
|
|
|
@PostMapping(value = "/api/v1/ams/amscontracttransportprices/getAmsContractTransportPriceForConverted")
|
|
|
+<<<<<<< HEAD
|
|
|
Map<String,Object> getAmsContractTransportPriceForConverted(@RequestParam("lineId") BigDecimal lineId,
|
|
|
@RequestParam("apiId") Integer apiId,
|
|
|
+=======
|
|
|
+ Map<String,Object> getAmsContractTransportPriceForConverted(@RequestParam("lineId")BigDecimal lineId,
|
|
|
+ @RequestParam("apiId")Integer apiId,
|
|
|
+>>>>>>> ab3706e4019b68de223c05db280a865bdd315882
|
|
|
@RequestParam("pageNum")Integer pageNum,
|
|
|
@RequestParam("pageSize")Integer pageSize);
|
|
|
//获得运输线路
|