YOUPAILCSkillModel.m 773 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // YOUPAILCSkillModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/9.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCSkillModel.h"
  9. @implementation YOUPAILCSkillModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName {
  11. return @{
  12. @"youpaipid":@"id",
  13. @"youpaipname":@"name",
  14. @"youpaipicon":@"icon",
  15. @"youpaipskill_id":@"skill_id",
  16. @"youpaipstatus":@"status",
  17. @"youpaipis_add":@"is_add",
  18. @"youpaipprice":@"price",
  19. @"youpaipscore":@"score",
  20. @"youpaipservice_count":@"service_count",
  21. @"youpaipservice_time":@"service_time",
  22. @"youpaipprice_list":@"price_list",
  23. @"youpaiprate":@"rate",
  24. @"youpaipdis_price":@"dis_price",
  25. };
  26. }
  27. @end