Nessuna descrizione

FKBasicSpecItem.h 481B

123456789101112131415161718192021
  1. //
  2. // FKSpecItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/1/21.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKBasicSpecItem : NSObject
  10. @property (nonatomic, strong) NSString *itemID;
  11. @property (nonatomic, strong) NSString *name;
  12. @property (nonatomic, strong) NSString *picUrl;
  13. @property (nonatomic, assign) BOOL canUse; // 是否可选
  14. @property (nonatomic, assign) BOOL selected; // 是否选中
  15. @end