| | |
| | | @Select("select dev_no from agv_bas_devp where loc_sts = 'O'") |
| | | List<String> getAvailableEmptyInSite(); |
| | | |
| | | @Select("select station_code from agv_bas_devp where floor = #{floor} and cache_shelves = 'Y' group by station_code") |
| | | @Select("select station_code from agv_bas_devp where floor = #{floor} and cache_shelves = 'N' and in_enable = 'Y' group by station_code") |
| | | List<String> selectCacheShelvesStationCodeByFloor(@Param("floor") int floor); |
| | | |
| | | @Select("SELECT\n" + |
| | |
| | | "\tnum") |
| | | List<Map<String,Object>> selectDevNoAndNumBystationCode(@Param("stationCode") String stationCode); |
| | | |
| | | @Select("select station_code from agv_bas_devp group by station_code ") |
| | | @Select("select station_code from agv_bas_devp group by station_code") |
| | | List<String> selectAllStationCode(); |
| | | } |