You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
4 years ago
|
//
|
||
|
// TFCommentsModel.h
|
||
|
// TFReader
|
||
|
//
|
||
|
// Created by 谢腾飞 on 2020/12/13.
|
||
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
@class TFCommentsListModel, TFPagingModel;
|
||
|
|
||
|
@interface TFCommentsModel : TFPagingModel
|
||
|
|
||
|
@property (nonatomic ,strong) NSArray<TFCommentsListModel *> *list;
|
||
|
|
||
|
@end
|
||
|
|
||
|
|
||
|
|
||
|
@interface TFCommentsListModel : NSObject
|
||
|
|
||
|
@property (nonatomic ,copy) NSString *avatar; //评论用户头像
|
||
|
@property (nonatomic ,assign) NSInteger comment_id; //评论id
|
||
|
@property (nonatomic ,assign) NSInteger uid; //评论用户uid
|
||
|
@property (nonatomic ,copy) NSString *time; //评论时间
|
||
|
@property (nonatomic ,copy) NSString *nickname; //评论人昵称
|
||
|
@property (nonatomic ,copy) NSString *content; //评论内容
|
||
|
@property (nonatomic ,assign) NSInteger like_num; //点赞数
|
||
|
@property (nonatomic ,copy) NSString *reply_info; //回复的评论内容
|
||
|
@property (nonatomic ,assign) NSInteger is_vip; //是否为VIP ,0否 1是
|
||
|
@property (nonatomic ,assign) NSInteger comment_num; //评论数
|
||
|
@property (nonatomic ,copy) NSString *name_title; // 评论的书籍
|
||
|
@property (nonatomic ,assign) NSInteger reply_num; // 评论回复数
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|