123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // FKProductAdviseItem.h
- // FirstLink
- //
- // Created by ascii on 16/1/26.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "Motis.h"
- @interface FKProductAdviseItem : NSObject
- /**
- * 问答记录ID
- */
- @property (nonatomic, strong) NSString *itemID;
- /**
- * 目前为商品ID
- */
- @property (nonatomic, strong) NSString *productID;
- @property (nonatomic, strong) NSString *objectType;
- // 提问信息
- @property (nonatomic, strong) NSString *qUserID;
- @property (nonatomic, strong) NSString *qUsername;
- @property (nonatomic, strong) NSString *qUserHeadURL;
- @property (nonatomic, strong) NSString *qContent;
- @property (nonatomic, strong) NSString *qTime;
- // 回答信息
- @property (nonatomic, strong) NSString *aUserID;
- @property (nonatomic, strong) NSString *aUsername;
- @property (nonatomic, strong) NSString *aUserHeadURL;
- @property (nonatomic, strong) NSString *aContent;
- @property (nonatomic, strong) NSString *aTime;
- - (BOOL)isExistAnswer;
- @end
|