GameDistributionModel.m 557 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // GameDistributionModel.m
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/4/8.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "GameDistributionModel.h"
  9. @implementation GameUserModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName{
  11. return @{
  12. @"userID" : @"id",
  13. @"descrStr": @"description",
  14. };
  15. }
  16. @end
  17. @implementation PageModel
  18. @end
  19. @implementation GameDistributionModel
  20. + (NSDictionary *)mj_objectClassInArray{
  21. return @{
  22. @"list" : @"GameUserModel",
  23. };
  24. }
  25. @end