123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // SystemMessage.h
- // FirstLink
- //
- // Created by ascii on 14/12/26.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "Motis.h"
- /**
- * 系统消息、拼单消息、评论
- */
- @interface FKAppMessage : NSObject
- @property (nonatomic, strong) NSString *msgID;
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *itemType;
- @property (nonatomic, strong) NSString *ownerID;
- @property (nonatomic, strong) NSString *desc;
- @property (nonatomic, strong) NSString *firstPicURL;
- @property (nonatomic, strong) NSString *targetURL;
- @property (nonatomic, strong) NSString *replyUserID;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *content;
- @property (nonatomic, strong) NSString *sponsorID;
- @property (nonatomic, strong) NSString *nickname;
- @property (nonatomic, strong) NSString *headURL;
- @property (nonatomic, strong) NSString *msgType;
- @property (nonatomic, strong) NSString *eventType;
- @property (nonatomic, strong) NSString *createTime;
- - (NSString*)tipForLatestMessage;
- @end
|