Brak opisu

FKAppMessage.h 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // SystemMessage.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 14/12/26.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "Motis.h"
  10. /**
  11. * 系统消息、拼单消息、评论
  12. */
  13. @interface FKAppMessage : NSObject
  14. @property (nonatomic, strong) NSString *msgID;
  15. @property (nonatomic, strong) NSString *itemID;
  16. @property (nonatomic, strong) NSString *status;
  17. @property (nonatomic, strong) NSString *itemType;
  18. @property (nonatomic, strong) NSString *ownerID;
  19. @property (nonatomic, strong) NSString *desc;
  20. @property (nonatomic, strong) NSString *firstPicURL;
  21. @property (nonatomic, strong) NSString *targetURL;
  22. @property (nonatomic, strong) NSString *replyUserID;
  23. @property (nonatomic, strong) NSString *title;
  24. @property (nonatomic, strong) NSString *content;
  25. @property (nonatomic, strong) NSString *sponsorID;
  26. @property (nonatomic, strong) NSString *nickname;
  27. @property (nonatomic, strong) NSString *headURL;
  28. @property (nonatomic, strong) NSString *msgType;
  29. @property (nonatomic, strong) NSString *eventType;
  30. @property (nonatomic, strong) NSString *createTime;
  31. - (NSString*)tipForLatestMessage;
  32. @end