123456789101112131415161718192021 |
- //
- // FKSpecItem.h
- // FirstLink
- //
- // Created by jack on 16/1/21.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKBasicSpecItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, assign) BOOL canUse; // 是否可选
- @property (nonatomic, assign) BOOL selected; // 是否选中
- @end
|