1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // YOUPAIHRChatRoomSubDetailModel.m
- // VQU
- //
- // Created by xiaohaoran on 2021/11/6.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAIHRChatRoomSubDetailModel.h"
- @implementation YOUPAIHRChatRoomSubDetailModel
- + (NSDictionary*)mj_objectClassInArray{
- return @{
- @"youpaipimg" : [Image class]
-
- };
- }
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipuser_id":@"user_id",
- @"youpaiproom_id":@"room_id",
- @"youpaipcover_img":@"cover_img",
- @"youpaiptitle":@"title",
- @"youpaippwd":@"pwd",
- @"youpaiprooms_title":@"rooms_title",
- @"youpaipscores":@"scores",
- @"youpaipimg":@"img",
- @"youpaipis_comein_room_hide":@"is_comein_room_hide",
- };
- }
- @end
- @implementation Image
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipimg":@"img",
- };
- }
- @end
|