Skip to content
Snippets Groups Projects

Jjking

Merged 周全 requested to merge jjking into develop
Compare and
2 files
+ 15
13
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -14,6 +14,7 @@ import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
@@ -33,7 +34,7 @@ public interface IAdjustPlanController {
*/
@PostMapping(path = "pc/v1/getAdjustPlan")
@ApiOperation("查询调整计划")
Result<AdjustPlanFlowOut> getAdjustPlan(@RequestBody Long id);
Result<AdjustPlanFlowOut> getAdjustPlan(@RequestParam(value = "id") Long id);
/**
* 查询调整计划事由
@@ -42,7 +43,7 @@ public interface IAdjustPlanController {
*/
@PostMapping(path = "pc/v1/getAdjustPlanCause")
@ApiOperation("查询调整计划事由")
Result<AdjustPlanCauseOut> getAdjustPlanCause(@RequestBody Long id);
Result<AdjustPlanCauseOut> getAdjustPlanCause(@RequestParam(value = "id") Long id);
/**
* 分页查询调整计划