SSDKDataModel.h 494 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // SSDKDataModel.h
  3. // ShareSDK
  4. //
  5. // Created by maxl on 2020/6/10.
  6. // Copyright © 2020 掌淘科技. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SSDKDataModel : NSObject<NSCoding>
  11. /**
  12. 初始化数据模型
  13. @param dict 初始化数据
  14. @return 数据模型
  15. */
  16. - (instancetype)initWithDict:(NSDictionary *)dict;
  17. /**
  18. 返回一个字典结构
  19. @return 字段数据对象
  20. */
  21. - (NSDictionary *)dictionaryValue;
  22. @end
  23. NS_ASSUME_NONNULL_END