HMHotModel.m 454 B

12345678910111213141516171819202122232425262728
  1. //
  2. // HMHotModel.m
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/7/5.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "HMHotModel.h"
  9. @implementation HMHotModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"ID" : @"id",
  14. };
  15. }
  16. + (NSDictionary *)mj_objectClassInArray
  17. {
  18. return @{
  19. @"banner" : @"HMHotBannerModel",
  20. @"list" : @"HMHotItemModel"
  21. };
  22. }
  23. @end