ZYLResponseModel.h 650 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ZYLResponseModel.h
  3. // Tsn
  4. //
  5. // Created by 翟玉磊 on 2019/2/26.
  6. // Copyright © 2019 翟玉磊. All rights reserved.
  7. // 请求数据转化model
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ZYLResponseModel : NSObject
  11. @property (nonatomic, readwrite, copy) NSString *code;
  12. @property (nonatomic, readwrite, copy) NSString *message;
  13. /// 当code是OK时时YES 反之则是NO 只是为了方便判断code状态
  14. @property (nonatomic, readwrite, assign) BOOL codeState;
  15. @property (nonatomic, readwrite, strong) NSDictionary *data;
  16. @property (nonatomic, readwrite, strong) id result;
  17. @end
  18. NS_ASSUME_NONNULL_END