RequestResultModel.h 492 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RequestResultModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/7/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:请求数据返回结果模型
  9. //
  10. #import <Foundation/Foundation.h>
  11. @interface RequestResultModel : NSObject
  12. /**
  13. 状态值
  14. */
  15. @property (nonatomic,assign) int status;
  16. /**
  17. 消息
  18. */
  19. @property (nonatomic,strong) NSString *message;
  20. /**
  21. 结果json
  22. */
  23. @property (nonatomic,strong) NSObject *result;
  24. @end