public ModelAndView querySpotRefrenceDetail(
@PathVariable("refrenceType") SpotRefrenceType refrenceType,
@PathVariable("spotId") Long spotId) {
ModelAndView mav = new ModelAndView();
if (refrenceType == SpotRefrenceType.ALBUM) {
Page page = new Page();
page.setSize(1);
SpotRefrence spotRef = spotRefrenceService
.getRefrencesBySpotIdAndType(spotId,
SpotRefrenceType.ALBUM, page).get(0);
Album album = albumService.getAlbumById(spotRef.getRefrenceId());
List<Photo> photosList = albumService.listPhotosOfAlbum(