123456789101112131415161718192021 |
- //
- // SingData.h
- // jiaPei
- //
- // Created by 张嵘 on 2019/8/27.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FMDatabase.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SingData : NSObject
- @property (nonatomic, readwrite, strong) FMDatabase *db;
- @property (nonatomic, readwrite, strong) FMDatabaseQueue *queue;
- + (SingData*)getInstance;
- @end
- NS_ASSUME_NONNULL_END
|