YOUPAILZDressModel.m 561 B

123456789101112131415161718192021222324252627
  1. //
  2. // YOUPAILZDressModel.m
  3. // VQU
  4. //
  5. // Created by CY on 2021/8/17.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import "YOUPAILZDressModel.h"
  9. @implementation YOUPAILZDressModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaipid":@"id",
  14. @"youpaipname":@"name",
  15. @"youpaipfile":@"file",
  16. @"youpaippreview_img":@"preview_img",
  17. @"youpaipdetail":@"detail",
  18. @"youpaipexpire":@"expire",
  19. @"youpaipis_use":@"is_use",
  20. @"youpaipu_dress_id":@"u_dress_id",
  21. };
  22. }
  23. @end