123456789101112131415161718192021222324252627 |
- //
- // CommentItem.h
- // FirstLink
- //
- // Created by jack on 15/6/24.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface CommentItem : NSObject
- @property (nonatomic, strong) NSString *commentID;
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *sellerID;
- @property (nonatomic, strong) NSString *buyerID;
- @property (nonatomic, strong) NSString *buyerNickName;
- @property (nonatomic, strong) NSString *buyerHeaderPic;
- @property (nonatomic, strong) NSString *replyToUserID;
- @property (nonatomic, strong) NSString *replyToUserNickName;
- @property (nonatomic, strong) NSString *content;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *updateTime;
- @property (nonatomic, strong) NSString *status;
- - (NSAttributedString *)getRealCommentTitle;
- @end
|