JXGetPacketList.h 609 B

123456789101112131415161718192021
  1. //
  2. // JXGetPacketList.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/8/30.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JXGetPacketList : NSObject
  10. @property (nonatomic,strong) NSString * recodeId;//记录id
  11. @property (nonatomic,assign) float money;
  12. @property (nonatomic,strong) NSString * redId;
  13. @property (nonatomic,assign) long time;
  14. @property (nonatomic,strong) NSString * userId;
  15. @property (nonatomic,strong) NSString * userName;
  16. @property (nonatomic, strong) NSString *reply; // 回复内容
  17. + (NSArray*)getPackList:(NSDictionary*)dataDict;
  18. @end