1234567891011121314151617181920212223242526 |
- //
- // RichModel.h
- // smartRhino
- //
- // Created by niuzhen on 2020/1/11.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RichModel : BaseModel
- @property (nonatomic, copy) NSString * Title;
- @property (nonatomic, copy) NSString * Author;
- @property (nonatomic, copy) NSString * AvatarUrl;
- @property (nonatomic, copy) NSString * Name;
- @property (nonatomic, copy) NSString * File;
- @property (nonatomic, assign) NSInteger Id;
- @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 审批
- - (NSAttributedString*)attrStringWithContainer;
- @end
- NS_ASSUME_NONNULL_END
|