RequestResultModel.h 512 B

123456789101112131415161718192021222324252627282930
  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. #import "DKModel.h"
  12. @interface RequestResultModel : NSObject
  13. /**
  14. 状态值
  15. */
  16. @property (nonatomic,assign) int status;
  17. /**
  18. 消息
  19. */
  20. @property (nonatomic,strong) NSString *message;
  21. /**
  22. 结果json
  23. */
  24. @property (nonatomic,strong) NSObject *result;
  25. @end