12345678910111213141516171819202122232425262728 |
- //
- // FKProTipsItem.h
- // FirstLink
- //
- // Created by jack on 16/8/18.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKProTipsItem : NSObject
- @property (nonatomic, strong) NSArray *beforeBuyTip;
- @property (nonatomic, strong) NSArray *buyAttentionTip;
- @property (nonatomic, strong) NSArray *serveTip;
- @property (nonatomic, strong) NSArray *taxTip;
- @property (nonatomic, strong) NSArray *latePayTip;
- @property (nonatomic, strong) NSArray *followTip;
- @property (nonatomic, assign) NSInteger beforeBuyCount;
- @property (nonatomic, assign) NSInteger buyAttentionCount;
- - (NSArray *)featureContentForShowLatePay:(BOOL)latePay;
- - (NSString *)buyWarnTitleForIndexPath:(NSIndexPath *)indexPath;
- - (BOOL)isLastTitleForIndexPath:(NSIndexPath *)indexPath;
- @end
|