Sin descripción

CommentItem.h 878B

123456789101112131415161718192021222324252627
  1. //
  2. // CommentItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/6/24.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface CommentItem : NSObject
  10. @property (nonatomic, strong) NSString *commentID;
  11. @property (nonatomic, strong) NSString *itemID;
  12. @property (nonatomic, strong) NSString *sellerID;
  13. @property (nonatomic, strong) NSString *buyerID;
  14. @property (nonatomic, strong) NSString *buyerNickName;
  15. @property (nonatomic, strong) NSString *buyerHeaderPic;
  16. @property (nonatomic, strong) NSString *replyToUserID;
  17. @property (nonatomic, strong) NSString *replyToUserNickName;
  18. @property (nonatomic, strong) NSString *content;
  19. @property (nonatomic, strong) NSString *createTime;
  20. @property (nonatomic, strong) NSString *updateTime;
  21. @property (nonatomic, strong) NSString *status;
  22. - (NSAttributedString *)getRealCommentTitle;
  23. @end