MHComment.h 921 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // MHComment.h
  3. // MHDevelopExample
  4. //
  5. // Created by CoderMikeHe on 17/2/8.
  6. // Copyright © 2017年 CoderMikeHe. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "MHUser.h"
  10. @protocol MHComment
  11. @end
  12. @interface MHComment : BaseModel
  13. /** 评论、回复id */
  14. @property (nonatomic , copy) NSString * Id;
  15. /** 评论、被回复人id */
  16. @property (nonatomic , assign) NSInteger ReplyUserId;
  17. /** 评论、被回复人id */
  18. @property (nonatomic , assign) NSInteger UserId;
  19. /** 创建时间 */
  20. @property (nonatomic , copy) NSString *CreatedTime;
  21. /** 回复用户模型 */
  22. @property (nonatomic , copy) NSString *Name;
  23. /** 来源用户模型 */
  24. @property (nonatomic , copy) NSString *ReplyName;
  25. /** 话题内容 */
  26. @property (nonatomic, copy) NSString *Content;
  27. /** 话题内容 */
  28. @property (nonatomic, assign) BOOL IsUnderstand;
  29. /** 获取富文本 */
  30. - (NSAttributedString *)attributedText;
  31. @end