1234567891011121314151617181920212223242526272829303132333435 |
- //
- // NewTopicModel.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/16.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol NewTopicModel
- @end
- @interface NewTopicModel : BaseModel
- @property (nonatomic, copy) NSString * title;
- @property (nonatomic, copy) NSString * Text;
- @property (nonatomic, copy) NSString * content;
- @property (nonatomic, copy) NSString * imageUrl;
- @property (nonatomic, copy) NSString * File;
- @property (nonatomic, assign) CollectDataType type;
- ///类型1 txt文字 2 img:图片 3 file:文件 4 Article:文章 5 notice通知 6 topic话题 7 note笔记 8 collection收藏 9站内信 10小组 11会议 12 收藏文件夹 13 笔记文件夹 14 审批
- @property (nonatomic, copy) NSString * FileName;
- @property (nonatomic, copy) NSString * AuthorName;
- @property (nonatomic, assign) NSInteger FileId;
- @property (nonatomic, copy) NSString * fileSize;
- @property (nonatomic, assign) CGFloat height;
- @property (nonatomic, assign) NSInteger ID;
- @property (nonatomic, copy) NSString * ArticleImgUrl;
- @property (nonatomic, assign) NSInteger AttributeValue;
- - (instancetype)initWithDict:(NSDictionary *)dict;
- @end
- NS_ASSUME_NONNULL_END
|