123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // KSDownSeatAllMessage.m
- // TeacherDaya
- //
- // Created by 王智 on 2022/7/18.
- // Copyright © 2022 DayaMusic. All rights reserved.
- //
- #import "KSDownSeatAllMessage.h"
- @implementation KSDownSeatAllMessage
- - (NSData *)encode {
- NSMutableDictionary *multableDict = [NSMutableDictionary dictionary];
-
- return [NSJSONSerialization dataWithJSONObject:multableDict options:kNilOptions error:nil];
- }
- - (void)decodeWithData:(NSData *)data {
- if (data == nil) return;
- NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil];
- NSDictionary *json = [[NSDictionary alloc] initWithDictionary:dictionary];
- if (json == nil) return;
- }
- + (NSString *)getObjectName {
- return @"RC:Chatroom:DownSeatAll";
- }
- - (NSArray<NSString *> *)getSearchableWords {
- return nil;
- }
- + (RCMessagePersistent)persistentFlag {
- return MessagePersistent_NONE;
- }
- @end
|