YOUPAIHRChatRoomGiftModel.m 709 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAIHRChatRoomGiftModel.m
  3. // VQU
  4. //
  5. // Created by xiaohaoran on 2021/11/2.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "YOUPAIHRChatRoomGiftModel.h"
  9. @implementation YOUPAIHRChatRoomGiftModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
  10. {
  11. return @{
  12. @"youpaipid":@"giftId",
  13. @"youpaipimg":@"img",
  14. @"youpaipname":@"name",
  15. @"youpaipprice":@"price",
  16. @"youpaiptotal":@"total",
  17. @"youpaipselected":@"selected",
  18. @"youpaipsign":@"sign",
  19. @"youpaipnum":@"num",
  20. @"youpaipmd5_string":@"md5_string",
  21. @"youpaipsvga":@"svga",
  22. @"youpaiptype":@"type",
  23. @"youpaipisSelect":@"isSelect",
  24. };
  25. }
  26. @end