123456789101112131415161718192021222324252627282930313233 |
- //
- // YOUPAILCBillDetailModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/10/10.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCBillDetailModel.h"
- @implementation YOUPAILCBillDetailModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipfrom_username":@"from_username",
- @"youpaipsystem_str":@"system_str",
- @"youpaipcreate_time":@"create_time",
- @"youpaipicon":@"icon",
- @"youpaipaccount_type":@"account_type",
- @"youpaiptype":@"type",
- @"youpaipchange_value":@"change_value",
- @"youpaipchange_value_new":@"change_value_new",
- @"youpaipid":@"id",
- @"youpaiprecharge_money":@"recharge_money",
- @"youpaipplatform_type":@"platform_type",
- @"youpaipplatform_name":@"platform_name",
- };
- }
- @end
|