//
// KWMCollectionCell.h
// iCemarose
//
// Created by 陈荣科 on 16/9/1.
// Copyright © 2016年 kollway. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Buy/Buy.h"
@interface KWMCollectionCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *ivCollectionCell;
@property (weak, nonatomic) IBOutlet UILabel *lbBrand;
@property (weak, nonatomic) IBOutlet UILabel *lbDiscount;
@property (weak, nonatomic) IBOutlet UILabel *lbPrice;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *discountLeft;
@property (nonatomic) BUYProduct *product;
@property (nonatomic) BOOL isMore;
-(void)setData:(BUYProduct *)product;
@end