12345678910111213141516171819202122232425 |
- //
- // YOUPAIZYAsylumModel.m
- // VQU
- //
- // Created by Elaine on 2020/10/10.
- // Copyright © 2020 leo. All rights reserved.
- //
- #import "YOUPAIZYAsylumModel.h"
- @implementation YOUPAIZYAsylumModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipavatar":@"avatar",
- @"youpaipgender":@"gender",
- @"youpaipnickname":@"nickname",
- @"youpaiptotal_day":@"total_day",
- @"youpaipuser_id":@"user_id",
- @"youpaipusercode":@"usercode",
- };
- }
- @end
|