// // CommentModel.h // TheoryNetwork // // Created by tederen on 2019/9/29. // Copyright © 2019 tederen. All rights reserved. // #import "BaseModel.h" #import "CommentSubModel.h" NS_ASSUME_NONNULL_BEGIN @interface CommentModel : BaseModel /* id */ @property (nonatomic, strong) NSNumber *commentId; /* 头像地址 */ @property (nonatomic, copy) NSString *portraitUrl; /* 楼主 */ //@property (nonatomic, copy) NSString *name; /* 楼层 */ @property (nonatomic, strong) NSNumber *floor; /* 发布时间 */ @property (nonatomic, strong) NSString *time; /* 发表内容 */ //@property (nonatomic, copy) NSString *content; /* 回复人 */ @property (nonatomic, copy) NSString *replyName; /* 回复个数 */ @property (nonatomic, strong) NSNumber *replyTimes; @property (nonatomic, strong) NSArray*repayArr; @property (nonatomic ,strong) NSString *FloorCount; @property (nonatomic ,assign) NSInteger UserId; @property (nonatomic ,assign) NSInteger IsLaud; @property (nonatomic ,strong) NSArray *CommentReplyResults; @property (nonatomic ,assign) NSInteger Id; @property (nonatomic ,strong) NSString *Name; @property (nonatomic ,strong) NSString *Content; @property (nonatomic ,assign) NSInteger LaudCount; @property (nonatomic ,strong) NSString *AvatarUrl; @property (nonatomic ,strong) NSString *CreatedTime; @property (nonatomic ,assign) NSInteger ArticleId; - (CGFloat)getCellHeight; @end NS_ASSUME_NONNULL_END