JXTransferNoticeModel.h 789 B

123456789101112131415161718192021222324
  1. //
  2. // JXTransferNoticeModel.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/3/8.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXTransferNoticeModel : NSObject
  10. @property (nonatomic, strong) NSString *userId; // 码的所有人id
  11. @property (nonatomic, strong) NSString *userName; // 码的所有人名字
  12. @property (nonatomic, strong) NSString *toUserId; // 扫码的人id
  13. @property (nonatomic, strong) NSString *toUserName; // 扫码的人名字
  14. @property (nonatomic, assign) double money; // 金额
  15. @property (nonatomic, assign) int type; // 1.付款码 2. 二维码收款
  16. @property (nonatomic, strong) NSString *createTime; // 交易时间
  17. - (void)getTransferNoticeWithDict:(NSDictionary *)dict;
  18. @end