RichModel.h 842 B

1234567891011121314151617181920212223242526
  1. //
  2. // RichModel.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/1/11.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RichModel : BaseModel
  11. @property (nonatomic, copy) NSString * Title;
  12. @property (nonatomic, copy) NSString * Author;
  13. @property (nonatomic, copy) NSString * AvatarUrl;
  14. @property (nonatomic, copy) NSString * Name;
  15. @property (nonatomic, copy) NSString * File;
  16. @property (nonatomic, assign) NSInteger Id;
  17. @property (nonatomic, assign) CollectDataType type;
  18. ///类型1 txt文字 2 img:图片 3 file:文件 4 Article:文章 5 notice通知 6 topic话题 7 note笔记 8 collection收藏 9站内信 10小组 11会议 12 收藏文件夹 13 笔记文件夹 14 审批
  19. - (NSAttributedString*)attrStringWithContainer;
  20. @end
  21. NS_ASSUME_NONNULL_END