YOUPAILCGiftModel.m 650 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAILCGiftModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/13.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCGiftModel.h"
  9. @implementation YOUPAILCGiftModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaipid":@"id",
  14. @"youpaipimg":@"img",
  15. @"youpaipname":@"name",
  16. @"youpaipprice":@"price",
  17. @"youpaiptotal":@"total",
  18. @"youpaipselected":@"selected",
  19. @"youpaipsign":@"sign",
  20. @"youpaipnum":@"num",
  21. @"youpaipmd5_string":@"md5_string",
  22. @"youpaipsvga":@"svga",
  23. @"youpaiptype":@"type",
  24. };
  25. }
  26. @end