JXTransferModel.h 874 B

12345678910111213141516171819202122232425
  1. //
  2. // JXTransferModel.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/3/2.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXTransferModel : NSObject
  10. @property (nonatomic, assign) long userId; // 发送者id
  11. @property (nonatomic, assign) long toUserId; // 接收者id
  12. @property (nonatomic, strong) NSString *userName; // 发送者昵称
  13. @property (nonatomic, strong) NSString *reamrk; // 转账说明
  14. @property (nonatomic, strong) NSString *createTime; // 转账时间
  15. @property (nonatomic, assign) double money; // 金额
  16. @property (nonatomic, strong) NSString *outTime; // 过期时间
  17. @property (nonatomic, assign) int status; // 1.发出 2. 已收款 -1.已退款
  18. @property (nonatomic, strong) NSString *receiptTime; //收款时间
  19. - (void)getTransferDataWithDict:(NSDictionary *)dict;
  20. @end