123456789101112131415161718192021 |
- //
- // BankCardView.h
- // jiaPei
- //
- // Created by apple on 16/8/24.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface BankCardView : UIView
- @property (nonatomic, retain) NSDictionary *dataDic;
- @property (nonatomic, retain) UIImageView *signImg;
- @property (nonatomic, retain) UILabel *titleLabel;
- @property (nonatomic, retain) UILabel *detailLabel;
- @end
|