Commit 684201f61f8eff95c05716e2361a5d13d6bde254

Authored by 潘钊
1 parent a02c51a8

update...

src/main/java/com/bsth/controller/realcontrol/anomalyCheckController.java
@@ -110,4 +110,10 @@ public class anomalyCheckController { @@ -110,4 +110,10 @@ public class anomalyCheckController {
110 public List<ScheduleRealInfo> findSchByNbbm(@RequestParam String nbbm){ 110 public List<ScheduleRealInfo> findSchByNbbm(@RequestParam String nbbm){
111 return dayOfSchedule.findByNbbm(nbbm); 111 return dayOfSchedule.findByNbbm(nbbm);
112 } 112 }
  113 +
  114 + @RequestMapping(value = "/removeExecPlan")
  115 + public int removeExecPlan(@RequestParam String nbbm){
  116 + dayOfSchedule.removeExecPlan(nbbm);
  117 + return 1;
  118 + }
113 } 119 }