CardOrderInformationReusableView.h 776 Bytes
//
//  CardOrderInformationReusableView.h
//  
//
//  Created by 曹云霄 on 2016/10/20.
//
//

#import <UIKit/UIKit.h>

@protocol UploadReceiptsDelegate <NSObject>

- (void)startUploadReceipts:(NSInteger)sectionIndex;

@end

@interface CardOrderInformationReusableView : UICollectionReusableView

@property (nonatomic,weak) id<UploadReceiptsDelegate> delegate;

@property (nonatomic,assign) NSInteger sectionIndex;

/**
 *  上传小票
 */
@property (weak, nonatomic) IBOutlet UIButton *uploadReceiptsButton;

/**
 *  订单号
 */
@property (weak, nonatomic) IBOutlet UILabel *orderNumberLabel;

/**
 *  订单时间
 */
@property (weak, nonatomic) IBOutlet UILabel *orderTimelabel;

/**
 *  订单数据
 */
@property (nonatomic,strong) GroupByOrderNumber *model;


@end