ASExtraPointsModel.h 536 B

123456789101112131415161718192021222324252627
  1. //
  2. // ASExtraPointsModel.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/12/25.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASExtraPointsModel : NSObject
  10. /// 类型id
  11. @property (nonatomic, copy) NSString *type;
  12. /// 类型名称
  13. @property (nonatomic, copy) NSString *name;
  14. /// 奖励积分描述
  15. @property (nonatomic, copy) NSString *point;
  16. /// 商品分类id
  17. @property (nonatomic, copy) NSString *categoryId;
  18. /// 是否可以获得
  19. @property (nonatomic, assign) BOOL is_obtain;
  20. @end
  21. NS_ASSUME_NONNULL_END