暫無描述

FKProTipsItem.h 814B

12345678910111213141516171819202122232425262728
  1. //
  2. // FKProTipsItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/8/18.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKProTipsItem : NSObject
  10. @property (nonatomic, strong) NSArray *beforeBuyTip;
  11. @property (nonatomic, strong) NSArray *buyAttentionTip;
  12. @property (nonatomic, strong) NSArray *serveTip;
  13. @property (nonatomic, strong) NSArray *taxTip;
  14. @property (nonatomic, strong) NSArray *latePayTip;
  15. @property (nonatomic, strong) NSArray *followTip;
  16. @property (nonatomic, assign) NSInteger beforeBuyCount;
  17. @property (nonatomic, assign) NSInteger buyAttentionCount;
  18. - (NSArray *)featureContentForShowLatePay:(BOOL)latePay;
  19. - (NSString *)buyWarnTitleForIndexPath:(NSIndexPath *)indexPath;
  20. - (BOOL)isLastTitleForIndexPath:(NSIndexPath *)indexPath;
  21. @end