NSObject+BGPrint.h 386 B

12345678910111213141516171819202122
  1. //
  2. // NSObject+BGPrint.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/12/14.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NSObject (BGPrint)
  11. + (void)printfModelWithJSONDict:(NSDictionary *)dict;
  12. + (void)printfModelWithClass:(NSString *)strClass JSONDict:(NSDictionary *)dict;
  13. @end
  14. NS_ASSUME_NONNULL_END