BGSystemMsgModel.h 863 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BGSystemMsgModel.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/12/16.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BGSystemMsgModel : NSObject
  11. @property (nonatomic,copy) NSString *content;/**<*/
  12. @property (nonatomic,copy) NSString *link_url;/**<*/
  13. @property (nonatomic,copy) NSString *id;/**<*/
  14. @property (nonatomic,copy) NSString *pub_detail;/**<*/
  15. @property (nonatomic,copy) NSString *title;/**<*/
  16. @property (nonatomic,copy) NSString *addtime;/**<*/
  17. @property (nonatomic,copy) NSString *type;/**<*/
  18. @property (nonatomic,copy) NSString *users;/**<*/
  19. @property (nonatomic,copy) NSString *url;/**<*/
  20. @property (nonatomic, assign) int mMsgType; //0 时间消息, 1 文字消息, 2,图片消息,3 语音消息,4 礼物
  21. - (NSString *)getTimeStr;
  22. @end
  23. NS_ASSUME_NONNULL_END