123456789101112131415161718192021222324 |
- //
- // YOUPAILCImageModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/9/9.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCImageModel.h"
- @implementation YOUPAILCImageModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipimage":@"image",
- @"youpaip_phAsset":@"_phAsset",
- @"youpaipurl":@"url",
- @"youpaipexts":@"exts",
- @"youpaipwidth":@"width",
- @"youpaipheight":@"height",
- @"youpaipimg_id":@"img_id",
- };
- }
- @end
|