YOUPAILCBillDetailModel.m 840 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // YOUPAILCBillDetailModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/10/10.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCBillDetailModel.h"
  9. @implementation YOUPAILCBillDetailModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaipfrom_username":@"from_username",
  14. @"youpaipsystem_str":@"system_str",
  15. @"youpaipcreate_time":@"create_time",
  16. @"youpaipicon":@"icon",
  17. @"youpaipaccount_type":@"account_type",
  18. @"youpaiptype":@"type",
  19. @"youpaipchange_value":@"change_value",
  20. @"youpaipchange_value_new":@"change_value_new",
  21. @"youpaipid":@"id",
  22. @"youpaiprecharge_money":@"recharge_money",
  23. @"youpaipplatform_type":@"platform_type",
  24. @"youpaipplatform_name":@"platform_name",
  25. };
  26. }
  27. @end