YOUPAILCShareModel.m 474 B

123456789101112131415161718192021222324
  1. //
  2. // YOUPAILCShareModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/26.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCShareModel.h"
  9. @implementation YOUPAILCShareModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaiptitle":@"title",
  14. @"youpaipcontent":@"content",
  15. @"youpaipurl":@"url",
  16. @"youpaipimage_url":@"image_url",
  17. @"youpaipurl_wechat":@"url_wechat",
  18. };
  19. }
  20. @end