|
|
|
@ -14,6 +14,7 @@ import org.apache.ibatis.annotations.Param;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
|
@Api(tags = "处置计划")
|
|
|
|
@ -35,9 +36,9 @@ public class TreatmentPlanController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation("确认处置计划")
|
|
|
|
|
@PostMapping("/confirm")
|
|
|
|
|
public boolean confirmTreatmentPlan(@RequestParam("processId") String processId,@RequestParam("status") String status) {
|
|
|
|
|
public boolean confirmTreatmentPlan(@RequestBody Map<String,String> map) {
|
|
|
|
|
|
|
|
|
|
return treatmentPlanService.confirmTreatmentPlan(processId,status);
|
|
|
|
|
return treatmentPlanService.confirmTreatmentPlan(map.get("processId"),map.get("status"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation("修改处置计划记录")
|
|
|
|
|