GiftModel.m 384 B

123456789101112131415161718192021222324
  1. //
  2. // GiftModel.m
  3. // BuguLive
  4. //
  5. // Created by xfg on 16/5/20.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "GiftModel.h"
  9. @implementation GiftModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName{
  11. return @{
  12. @"ID" : @"id",
  13. };
  14. }
  15. +(NSDictionary *)mj_objectClassInArray{
  16. return @{@"anim_cfg":@"AnimateConfigModel"};
  17. }
  18. @end