YOUPAILZChatRoomSeatModel.m 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // YOUPAILZChatRoomSeatModel.m
  3. // VQU
  4. //
  5. // Created by CY on 2021/10/28.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "YOUPAILZChatRoomSeatModel.h"
  9. @implementation YOUPAILZChatRoomSeatModel
  10. - (BOOL)youpaipisDisableMicrophone{
  11. if (self.youpaipsay == 3) {
  12. return YES;
  13. }else{
  14. return NO;
  15. }
  16. }
  17. + (NSDictionary *)mj_replacedKeyFromPropertyName
  18. {
  19. return @{
  20. @"youpaipisDisableSendMessage":@"isDisableSendMessage",
  21. @"youpaipisDisableMicrophone":@"isDisableMicrophone",
  22. @"youpaipseatState":@"status",
  23. @"youpaipseatType":@"seatType",
  24. @"youpaipisTalking":@"isTalking",
  25. @"youpaipisEmoji":@"isEmoji",
  26. @"youpaipemojiImg":@"emojiImg",
  27. @"youpaipseatName":@"seatName",
  28. @"youpaipseatIndex":@"seatIndex",
  29. @"youpaipsay":@"say",
  30. @"youpaipuserInfo":@"userInfo",
  31. @"youpaipisSelected":@"isSelected",
  32. @"youpaiphat_url":@"hat_url",
  33. @"youpaipseat_selected":@"seat_selected",
  34. };
  35. }
  36. @end