12345678910111213141516171819 |
- //
- // FKBookRecItem.h
- // FirstLink
- //
- // Created by jack on 16/4/29.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKBookBrandItem.h"
- @interface FKBookRecItem : NSObject
- @property (nonatomic, strong) FKBookBrandItem *brandItem;
- @property (nonatomic, strong) NSString *pushType;
- @property (nonatomic, strong) NSArray *recProArray;
- - (NSString *)getRealRecType;
- @end
|