Commit a7d506ffc97406983c1165591c7f274ff508b86a
1 parent
ec5c25d8
update...
Showing
1 changed file
with
5 additions
and
0 deletions
src/main/java/com/bsth/controller/realcontrol/anomalyCheckController.java
| ... | ... | @@ -105,4 +105,9 @@ public class anomalyCheckController { |
| 105 | 105 | public List<ScheduleRealInfo> findSchByLpName(@RequestParam String lpName){ |
| 106 | 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 | } | ... | ... |