1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAILCOnlineModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/9/11.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCOnlineModel.h"
- @implementation YOUPAILCOnlineModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipuserid":@"userid",
- @"youpaipusercode":@"usercode",
- @"youpaipnickname":@"nickname",
- @"youpaipavatar":@"avatar",
- @"youpaipgender":@"gender",
- @"youpaipage":@"age",
- @"youpaipcity":@"city",
- @"youpaipdateline":@"dateline",
- @"youpaipvip":@"vip",
- @"youpaipvip_icon":@"vip_icon",
- @"youpaiplabel_name":@"label_name",
- @"youpaipsign":@"sign",
- @"youpaipgrade":@"grade",
- };
- }
- @end
|