QMChatRoomGuestBookViewController.h 870 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // QMChatRoomGuestBookViewController.h
  3. // IMSDK-OC
  4. //
  5. // Created by HCF on 16/3/10.
  6. // Copyright © 2016年 HCF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface QMChatRoomGuestBookViewController : UIViewController
  10. @property (nonatomic ,strong)UILabel *messageLabel;
  11. @property (nonatomic ,strong)UITextView *messageTextView;
  12. @property (nonatomic ,strong)UILabel *textLabel;
  13. @property (nonatomic ,strong)UILabel *messageLabel2;
  14. @property (nonatomic ,strong)UIButton *submitBtn;
  15. @property (nonatomic, copy) NSString *peerId; // 技能组ID
  16. @property (nonatomic, copy) NSString *leaveMsg; // 留言内容
  17. @property (nonatomic, copy) NSArray *contactFields; // 自定义联系字段
  18. @property (nonatomic, copy) NSMutableDictionary *condition; // 联系信息
  19. @property (nonatomic, assign) BOOL isScheduleLeave; //是否是日程管理留言
  20. @end