// // ZYLResponseModel.h // Tsn // // Created by 翟玉磊 on 2019/2/26. // Copyright © 2019 翟玉磊. All rights reserved. // 请求数据转化model #import NS_ASSUME_NONNULL_BEGIN @interface ZYLResponseModel : NSObject @property (nonatomic, readwrite, copy) NSString *code; @property (nonatomic, readwrite, copy) NSString *message; /// 当code是OK时时YES 反之则是NO 只是为了方便判断code状态 @property (nonatomic, readwrite, assign) BOOL codeState; @property (nonatomic, readwrite, strong) NSDictionary *data; @property (nonatomic, readwrite, strong) id result; @end NS_ASSUME_NONNULL_END