JXredPacketDetailVC.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // JXredPacketDetailVC.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/8/30.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXPacketObject.h"
  10. #import "JXGetPacketList.h"
  11. @interface JXredPacketDetailVC : JXTableViewController
  12. @property (nonatomic,strong) NSString * redPacketId;//红包id
  13. @property (nonatomic,strong) NSDictionary * dataDict;//数据源
  14. @property (nonatomic,strong) NSArray * OpenMember;//打开红包的人的列表
  15. @property (nonatomic,strong) JXPacketObject * packetObj;//红包对象
  16. @property (nonatomic, assign) BOOL isGroup; // YES 群聊 NO 单聊
  17. @property (nonatomic, assign) int code; // 红包状态,100101:红包领取超时,101204:你已经领取过红包了,100102:你手太慢啦 已经被领完了
  18. /**
  19. 头部视图
  20. **/
  21. @property (strong, nonatomic) UIImageView * headImgV;
  22. @property (strong, nonatomic) UIView *contentView;
  23. /**
  24. 头像
  25. */
  26. @property (strong, nonatomic) UIImageView *headerImageView;
  27. /**
  28. 总金额
  29. */
  30. @property (strong, nonatomic) UILabel *totalMoneyLabel;
  31. /**
  32. 来自
  33. */
  34. @property (strong, nonatomic) UILabel *fromUserLabel;
  35. /**
  36. 红包标题
  37. */
  38. @property (strong, nonatomic) UILabel *greetLabel;
  39. /**
  40. 领取个数
  41. */
  42. @property (strong, nonatomic) IBOutlet UILabel *showNumLabel;
  43. /**
  44. 红包过时
  45. */
  46. @property (strong, nonatomic) UILabel * returnMoneyLabel;
  47. @end