1234567891011121314151617181920 |
- //
- // FKPointRuleItem.h
- // FirstLink
- //
- // Created by jack on 16/3/12.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKPointRuleItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *amount;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *needPoint;
- - (NSUInteger)getNeedPointValue;
- @end
|