ServiceModel.m 304 B

1234567891011121314151617
  1. //
  2. // ServiceModel.m
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/25.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import "ServiceModel.h"
  9. @implementation ServiceModel
  10. + (JSONKeyMapper *)keyMapper {
  11. return [[JSONKeyMapper alloc] initWithDictionary:@{@"id":@"ID"}];
  12. }
  13. @end