CommentSubModel.h 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // CommentSubModel.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/10/29.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol CommentSubModel
  11. @end
  12. @interface CommentSubModel : BaseModel
  13. /*
  14. id
  15. */
  16. @property (nonatomic, strong) NSNumber *commentId;
  17. /*
  18. 头像地址
  19. */
  20. @property (nonatomic, copy) NSString *portraitUrl;
  21. /*
  22. 楼层
  23. */
  24. @property (nonatomic, strong) NSNumber *floor;
  25. /*
  26. 发布时间
  27. */
  28. @property (nonatomic, strong) NSString *time;
  29. /*
  30. 回复人
  31. */
  32. /*
  33. 回复个数
  34. */
  35. @property (nonatomic, strong) NSNumber *replyTimes;
  36. @property (nonatomic ,strong) NSString *Name;
  37. @property (nonatomic ,strong) NSString *ReplyName;
  38. @property (nonatomic ,strong) NSString *CreatedTime;
  39. @property (nonatomic ,strong) NSString *Content;
  40. @property (nonatomic ,assign) NSInteger Id;
  41. @property (nonatomic ,assign) NSInteger UserId;
  42. @property (nonatomic ,assign) NSInteger IsUnderstand;
  43. - (CGFloat)getCellHeight;
  44. @end
  45. NS_ASSUME_NONNULL_END