1234567891011121314151617181920212223242526272829 |
- //
- // YOUPAIHRChatRoomGiftModel.m
- // VQU
- //
- // Created by xiaohaoran on 2021/11/2.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAIHRChatRoomGiftModel.h"
- @implementation YOUPAIHRChatRoomGiftModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipid":@"giftId",
- @"youpaipimg":@"img",
- @"youpaipname":@"name",
- @"youpaipprice":@"price",
- @"youpaiptotal":@"total",
- @"youpaipselected":@"selected",
- @"youpaipsign":@"sign",
- @"youpaipnum":@"num",
- @"youpaipmd5_string":@"md5_string",
- @"youpaipsvga":@"svga",
- @"youpaiptype":@"type",
- @"youpaipisSelect":@"isSelect",
- };
- }
- @end
|