// // CommentSubModel.h // smartRhino // // Created by tederen on 2019/10/29. // Copyright © 2019 tederen. All rights reserved. // #import "BaseModel.h" NS_ASSUME_NONNULL_BEGIN @protocol CommentSubModel @end @interface CommentSubModel : BaseModel /* id */ @property (nonatomic, strong) NSNumber *commentId; /* 头像地址 */ @property (nonatomic, copy) NSString *portraitUrl; /* 楼层 */ @property (nonatomic, strong) NSNumber *floor; /* 发布时间 */ @property (nonatomic, strong) NSString *time; /* 回复人 */ /* 回复个数 */ @property (nonatomic, strong) NSNumber *replyTimes; @property (nonatomic ,strong) NSString *Name; @property (nonatomic ,strong) NSString *ReplyName; @property (nonatomic ,strong) NSString *CreatedTime; @property (nonatomic ,strong) NSString *Content; @property (nonatomic ,assign) NSInteger Id; @property (nonatomic ,assign) NSInteger UserId; @property (nonatomic ,assign) NSInteger IsUnderstand; - (CGFloat)getCellHeight; @end NS_ASSUME_NONNULL_END