1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // 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
|