1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // YOUPAILCCallRecordModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/10/13.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCCallRecordModel.h"
- @implementation YOUPAILCCallRecordModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipid":@"id",
- @"youpaipuserid":@"userid",
- @"youpaipotherType":@"otherType",
- @"youpaipusercode":@"usercode",
- @"youpaipnickname":@"nickname",
- @"youpaipavatar":@"avatar",
- @"youpaipcity":@"city",
- @"youpaipcreate_time":@"create_time",
- @"youpaipgender":@"gender",
- @"youpaipage":@"age",
- @"youpaipskill":@"skill",
- @"youpaiptype":@"type",
- @"youpaipcalltype":@"calltype",
- @"youpaipstatus":@"status",
- @"youpaipstatus_txt":@"status_txt",
- @"youpaipcall_time":@"call_time",
- @"youpaipcall_amount":@"call_amount",
- @"youpaipcall_income":@"call_income",
- @"youpaipgrade":@"grade",
- @"youpaipvip":@"vip",
- @"youpaipvip_icon":@"vip_icon",
- };
- }
- @end
|