| 1234567891011121314151617181920212223242526 |
- //
- // RequestResultModel.m
- // IBOSS
- //
- // Created by apple on 2017/7/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:请求数据返回结果模型
- //
- #import "RequestResultModel.h"
- #import "DKModel.h"
- @implementation RequestResultModel
- /*!
- * 1.该方法是 `字典里的属性Key` 和 `要转化为模型里的属性名` 不一样 而重写的
- * 前:模型的属性 后:字典里的属性
- */
- + (nullable NSDictionary<NSString *,id> *)modelCustomPropertyMapper{
- return @{@"status":@"Status",
- @"message":@"Message",
- @"result":@"Result"};
- }
- @end
|