123456789101112131415161718192021 |
- //
- // FKPointBillItem.h
- // FirstLink
- //
- // Created by jack on 16/3/12.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKPointBillItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *scoreStr;
- @property (nonatomic, strong) NSString *source;
- @property (nonatomic, strong) NSString *desc;
- @property (nonatomic, strong) NSString *createTime;
- - (NSString *)handleTimeStr;
- @end
|