123456789101112131415161718192021 |
- //
- // JXGetPacketList.h
- // shiku_im
- //
- // Created by Apple on 16/8/30.
- // Copyright © 2016年 Reese. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface JXGetPacketList : NSObject
- @property (nonatomic,strong) NSString * recodeId;//记录id
- @property (nonatomic,assign) float money;
- @property (nonatomic,strong) NSString * redId;
- @property (nonatomic,assign) long time;
- @property (nonatomic,strong) NSString * userId;
- @property (nonatomic,strong) NSString * userName;
- @property (nonatomic, strong) NSString *reply; // 回复内容
- + (NSArray*)getPackList:(NSDictionary*)dataDict;
- @end
|