mirror of
https://github.com/wu736139669/RN_AWord.git
synced 2026-08-05 06:24:39 +00:00
29 lines
584 B
Objective-C
29 lines
584 B
Objective-C
//
|
|
// MessageInfo.m
|
|
// testdemo
|
|
//
|
|
// Created by xmfish on 16/2/18.
|
|
// Copyright © 2016年 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "MessageInfo.h"
|
|
|
|
@implementation MessageInfo
|
|
+(NSString *)getTableName
|
|
{
|
|
return @"MessageInfo";
|
|
}
|
|
+ (NSString*)getPrimaryKey
|
|
{
|
|
return @"infoKey";
|
|
}
|
|
-(NSDictionary*)dictionary
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:self.infoKey, @"id", self.title,@"title", self.image,@"imageurl", nil];
|
|
}
|
|
-(NSString*)JSON
|
|
{
|
|
return [NSString stringWithFormat:@"{'id':%@,'title':%@,'imageurl':%@}",self.infoKey,self.title,self.image];
|
|
}
|
|
@end
|