RankDetailView.h 968 Bytes
//
//  RankDetailView.h
//  redstar
//
//  Created by admin on 15/11/12.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface RankDetailView : UIView
@property (nonatomic, strong) UILabel *addressLabel; // 地址
@property (nonatomic, strong) UILabel *titleLabel; // 总标题
@property (nonatomic, strong) UILabel *reportTimeLabel; // 上报时间
@property (nonatomic, strong) UILabel *totalScoreLabel; // 总评分
@property (nonatomic, strong) UILabel *totalGradeLabel; // 总排名
@property (nonatomic, strong) UILabel *timeLabel; // 时间
@property (nonatomic, strong) UILabel *scoreLabel; // 分数
@property (nonatomic, strong) UIView *gradeView; // 排名
@property (nonatomic, strong) UILabel *gradeLabel; // 排名
@property (nonatomic, strong) UIImageView *gradeImageView; // 排名
@property (nonatomic, strong) UIScrollView *showScrollView; // 轮播图

@property (nonatomic, strong) NSArray *storePictures;
@end