YOUPAILCImageModel.m 525 B

123456789101112131415161718192021222324
  1. //
  2. // YOUPAILCImageModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/9.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCImageModel.h"
  9. @implementation YOUPAILCImageModel+ (NSDictionary *)mj_replacedKeyFromPropertyName
  10. {
  11. return @{
  12. @"youpaipimage":@"image",
  13. @"youpaip_phAsset":@"_phAsset",
  14. @"youpaipurl":@"url",
  15. @"youpaipexts":@"exts",
  16. @"youpaipwidth":@"width",
  17. @"youpaipheight":@"height",
  18. @"youpaipimg_id":@"img_id",
  19. };
  20. }
  21. @end