// // CardView.h // Car // // Created by Javen on 2016/12/28. // Copyright © 2016年 上海勾芒信息科技. All rights reserved. // #import <UIKit/UIKit.h> #import "CardModel.h" @interface CardView : UIView @property (weak, nonatomic) IBOutlet UIImageView *imgBg; @property (weak, nonatomic) IBOutlet UILabel *labelTitle; @property (weak, nonatomic) IBOutlet UILabel *labelPrice; @property (weak, nonatomic) IBOutlet UILabel *labelCondition; @property (weak, nonatomic) IBOutlet UIImageView *imgState; @property (weak, nonatomic) IBOutlet UILabel *labelDuration; @property (weak, nonatomic) IBOutlet UILabel *labelCardNumber; @property (strong, nonatomic) CardModel *model; @end