JLMyBonusModel.h 635 B

123456789101112131415161718192021222324
  1. //
  2. // JLMyBonusModel.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2020/4/12.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JLMyBonusModel : NSObject
  11. @property(nonatomic, assign)int status;
  12. @property(nonatomic, assign)double amount;
  13. @property(nonatomic, assign)NSTimeInterval createTime;
  14. @property(nonatomic, strong)NSString *giftName;
  15. @property(nonatomic, strong)NSString *userName;
  16. @property(nonatomic, strong)NSString *userId;
  17. @property(nonatomic, strong)NSString *activityDeliveryId;
  18. @property(nonatomic, strong)NSString *id;
  19. @end
  20. NS_ASSUME_NONNULL_END