| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // GameDistributionModel.m
- // BuguLive
- //
- // Created by 王珂 on 17/4/8.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "GameDistributionModel.h"
- @implementation GameUserModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName{
- return @{
- @"userID" : @"id",
- @"descrStr": @"description",
- };
- }
- @end
- @implementation PageModel
- @end
- @implementation GameDistributionModel
- + (NSDictionary *)mj_objectClassInArray{
- return @{
- @"list" : @"GameUserModel",
- };
- }
- @end
|