Commit a7d506ffc97406983c1165591c7f274ff508b86a

Authored by 潘钊
1 parent ec5c25d8

update...

src/main/java/com/bsth/controller/realcontrol/anomalyCheckController.java
@@ -105,4 +105,9 @@ public class anomalyCheckController { @@ -105,4 +105,9 @@ public class anomalyCheckController {
105 public List<ScheduleRealInfo> findSchByLpName(@RequestParam String lpName){ 105 public List<ScheduleRealInfo> findSchByLpName(@RequestParam String lpName){
106 return dayOfSchedule.getLpScheduleMap().get(lpName); 106 return dayOfSchedule.getLpScheduleMap().get(lpName);
107 } 107 }
  108 +
  109 + @RequestMapping(value = "/findSchByNbbm")
  110 + public List<ScheduleRealInfo> findSchByNbbm(@RequestParam String nbbm){
  111 + return dayOfSchedule.findByNbbm(nbbm);
  112 + }
108 } 113 }