|
@@ -707,38 +707,38 @@ 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,
|