CardCollectionViewCell.h 1.04 KB
//
//  CardCollectionViewCell.h
//  Lighting
//
//  Created by 曹云霄 on 2016/10/19.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface CardCollectionViewCell : UICollectionViewCell

/**
 *  背景图片
 */
@property (weak, nonatomic) IBOutlet UIImageView *backgroundImageView;

/**
 *  卡号
 */
@property (weak, nonatomic) IBOutlet UILabel *cardNumberLabel;

/**
 *  密码
 */
@property (weak, nonatomic) IBOutlet UILabel *cardPasswordLabel;

/**
 *  金额
 */
@property (weak, nonatomic) IBOutlet UILabel *amountLabel;

/**
 *  数据源
 */
@property (nonatomic,strong)  TOJingdongEcardEntity *Cardmodel;

/**
 *  遮罩层
 */
@property (weak, nonatomic) IBOutlet UIImageView *maskImageView;

/**
 *  已使用imageView
 */
@property (weak, nonatomic) IBOutlet UIImageView *usedImageView;

/**
 *  去使用Button
 */
@property (weak, nonatomic) IBOutlet UIButton *useingButton;

/**
 *  遮罩层View
 */
@property (weak, nonatomic) IBOutlet UIImageView *maskBackGroundView;



@end