protected override List<StorePicture> PicturesBody(StoreInfo storeInfo, BusPhotoAlbum busphotoAlbumTable, string albumType, ref int pageNum)
        {
            var collectionPhone = new CollectionPhone();
            collectionPhone.PageUrl = GetPageUrl(storeInfo, albumType, pageNum);
            var sid = GetStoreSid(storeInfo.StorePictureHref);
            collectionPhone.dictionary.Add("s_id", sid);
            collectionPhone.dictionary.Add("id", sid);
            collectionPhone.dictionary.Add("page", pageNum.ToString());
            collectionPhone.dictionary.Add("keyword", string.Empty);

            try
            {
                var location = collectionPhone.GetEpinLeResualt<List<PictureModel>>();
                if (location == null || location.Count <= 0)
                {
                    pageNum = 500;
                    return new List<StorePicture>();
                }
                return SavePicture(storeInfo, location, busphotoAlbumTable);
            }
            catch
            {
                pageNum = 500;
                return new List<StorePicture>();
            }
        }