| 1234567891011121314151617181920212223242526272829 |
- //
- // RequestResultModel.h
- // IBOSS
- //
- // Created by apple on 2017/7/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:请求数据返回结果模型
- //
- #import <Foundation/Foundation.h>
- @interface RequestResultModel : NSObject
- /**
- 状态值
- */
- @property (nonatomic,assign) int status;
- /**
- 消息
- */
- @property (nonatomic,strong) NSString *message;
- /**
- 结果json
- */
- @property (nonatomic,strong) NSObject *result;
- @end
|