LookHistoryModel.h 1001 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // LookHistoryModel.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/5.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface LookHistoryModel : NSObject
  11. @property (nonatomic, assign)BOOL isSelected;
  12. @property (nonatomic, strong)NSString *addtime;
  13. @property (nonatomic, strong)NSString *goods_name;
  14. @property (nonatomic, strong)NSString *goods_price;
  15. @property (nonatomic, strong)NSString *goods_status;
  16. @property (nonatomic, strong)NSString *goods_thumb;
  17. @property (nonatomic, strong)NSString *goodsid;
  18. @property (nonatomic, strong)NSString *time_format;
  19. @property (nonatomic, strong)NSString *idStr;
  20. @property (nonatomic, strong)NSString *uid;
  21. @property (nonatomic, strong)NSString *type;
  22. @property (nonatomic, strong)NSString *href;
  23. @property (nonatomic, strong)NSString *original_price;
  24. //-(instancetype)initWithDic:(NSDictionary *)dic;
  25. //+(instancetype)modelWithDic:(NSDictionary *)subdic;
  26. @end
  27. NS_ASSUME_NONNULL_END