//
//  GuideIntegralViewController.h
//  Lighting
//
//  Created by 曹云霄 on 2016/11/16.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"

@interface GuideIntegralViewController : BaseViewController


/**
 导购头像
 */
@property (weak, nonatomic) IBOutlet UIImageView *guideHeaderView;

/**
 当前积分
 */
@property (weak, nonatomic) IBOutlet UILabel *currentIntegralLabel;

/**
 季度积分排行
 */
@property (weak, nonatomic) IBOutlet UILabel *quarterIntegralLabel;

/**
 年度积分排行
 */
@property (weak, nonatomic) IBOutlet UILabel *yearIntegralLabel;

/**
 积分明细
 */
@property (weak, nonatomic) IBOutlet UIView *integralDetailsView;


@end