123456789101112131415161718192021222324 |
- //
- // JLMyBonusModel.h
- // shiku_im
- //
- // Created by JayLuo on 2020/4/12.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JLMyBonusModel : NSObject
- @property(nonatomic, assign)int status;
- @property(nonatomic, assign)double amount;
- @property(nonatomic, assign)NSTimeInterval createTime;
- @property(nonatomic, strong)NSString *giftName;
- @property(nonatomic, strong)NSString *userName;
- @property(nonatomic, strong)NSString *userId;
- @property(nonatomic, strong)NSString *activityDeliveryId;
- @property(nonatomic, strong)NSString *id;
- @end
- NS_ASSUME_NONNULL_END
|