RPassgerView.h 790 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 18 19 20
@property (nonatomic,strong)UIImageView *bgImage;
@property (nonatomic,strong)UIImageView *cenImage;

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

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

@end