RPassgerView.h 890 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11
//
//  RPassgerView.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/11/13.
//  Copyright © 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "Compass.h"
@interface RPassgerView : UIView
12
@property (nonatomic,strong)UILabel *centerLabel;
陈俊俊's avatar
陈俊俊 committed
13 14 15
@property (nonatomic,strong)UILabel *dateLabel;
@property (nonatomic,strong)UIButton *lastWeekLabel;
@property (nonatomic,strong)UIButton *lastYearLabel;
16 17
@property (nonatomic,strong)UIImageView *bgImage;
@property (nonatomic,strong)UIImageView *cenImage;
陈俊俊's avatar
陈俊俊 committed
18 19
@property (nonatomic,strong)NSString *weekLabelStr;
@property (nonatomic,strong)UILabel *weekLabel;
20 21 22

- (instancetype)initWithFrame:(CGRect)frame withPage:(NSInteger)currentPage;

陈俊俊's avatar
陈俊俊 committed
23 24 25 26 27 28 29 30
//客流
- (void)setPassengerWithCompass:(Compass *)compass;
//客单价
- (void)setPersalesWithCompass:(Compass *)compass;
//毛利率
- (void)setGrossprofitWithCompass:(Compass *)compass;

@end