1234567891011121314151617181920212223 |
- //
- // CashCouponCell.h
- // FirstLink
- //
- // Created by ascii on 15/6/19.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKCouponItem.h"
- #import "FKCouponViewModel.h"
- /**
- 代金券
- */
- @interface FKCouponTableViewCell : UITableViewCell
- - (void)configCellWith:(FKCouponItem *)item serveTime:(NSString *)serveTime;
- + (CGFloat)height;
- @end
|