28 lines
544 B
Objective-C
28 lines
544 B
Objective-C
//
|
|
// IfishDatabaseManager.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/12/23.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "IfishInformations.h"
|
|
|
|
@interface IfishDatabaseManager : NSObject
|
|
|
|
+(instancetype)sharedManager;
|
|
//老版本推送消息表 现已经废弃
|
|
-(void)insertModel:(id)model;
|
|
-(void)deleteModel:(id)model;
|
|
-(NSMutableArray*)readModel;
|
|
|
|
|
|
//资讯
|
|
-(void)insertIfishInformations:( IfishInformations*)model;
|
|
//获取所有资讯信息
|
|
-(NSMutableArray*)readInformations;
|
|
|
|
|
|
@end
|