No Description

CollectItem.h 785B

123456789101112131415161718192021222324252627
  1. //
  2. // CollectionCommodity.h
  3. // FirstLink
  4. //
  5. // Created by unicode on 14-10-13.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import "Motis.h"
  9. @interface CollectItem : NSObject
  10. @property (nonatomic, strong) NSString *itemID;
  11. @property (nonatomic, strong) NSString *userID;
  12. @property (nonatomic, strong) NSString *photoURL;
  13. @property (nonatomic, strong) NSString *name;
  14. @property (nonatomic, strong) NSString *title;
  15. @property (nonatomic, strong) NSString *type;
  16. @property (nonatomic, strong) NSString *status;
  17. @property (nonatomic, strong) NSString *operatnStatus;
  18. @property (nonatomic, strong) NSString *price;
  19. @property (nonatomic, strong) NSString *referPrice;
  20. @property (nonatomic, strong) NSString *source;
  21. @property (nonatomic, assign) BOOL isCollect;
  22. @end