// // CardCollectionViewCell.h // Lighting // // Created by 曹云霄 on 2016/10/19. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import @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 (nonatomic,strong) UIImageView *maskView; @end