12345678910111213141516171819202122232425262728293031323334 |
- //
- // YOUPAILZChatRoomApplySeatAttachment.m
- // VQU
- //
- // Created by CY on 2021/11/6.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZChatRoomApplySeatAttachment.h"
- @implementation YOUPAILZChatRoomApplySeatAttachment
- - (NSString *)encodeAttachment{
- NSDictionary *dict = @{
- CMType : @(CustomOnChatRoomApplySeat),
- CMData : @{
- CMRoomId: self.roomid?self.roomid:@"",
- CMOpUid: self.op_uid ?self.op_uid:@"",
- CMNum: self.num ?self.num:@"",
- CMStatus: self.status ?self.status:@"",
- }
- };
- NSData *data = [NSJSONSerialization dataWithJSONObject:dict
- options:0
- error:nil];
- NSString *content = nil;
- if (data) {
- content = [[NSString alloc] initWithData:data
- encoding:NSUTF8StringEncoding];
- }
- return content;
- }
- @end
|