SingData.h 411 B

123456789101112131415161718192021
  1. //
  2. // SingData.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2019/8/27.
  6. // Copyright © 2019 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FMDatabase.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface SingData : NSObject
  12. @property (nonatomic, readwrite, strong) FMDatabase *db;
  13. @property (nonatomic, readwrite, strong) FMDatabaseQueue *queue;
  14. + (SingData*)getInstance;
  15. @end
  16. NS_ASSUME_NONNULL_END