You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
785 B
37 lines
785 B
// |
|
// CMessage.h |
|
// tongxin |
|
// |
|
// Created by ecell on 2021/6/25. |
|
// Copyright © 2021 xTT. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
#import "baseModel.h" |
|
|
|
|
|
@interface CMessage : baseModel |
|
|
|
|
|
//@property (nonatomic, strong) NSNumber *page; |
|
@property (nonatomic, strong) NSString *i; |
|
@property (nonatomic, strong) NSNumber *t; |
|
|
|
|
|
/** |
|
删除 消息 的接口 |
|
*/ |
|
+ (void)delectTrackWithMessageIds:(NSArray*)messageIds |
|
success:(void (^)(id responseObject))success |
|
failure:(void (^)(void))failure; |
|
|
|
|
|
/** |
|
获取通知数据 |
|
*/ |
|
+ (void)getCallMessageWithPage:(NSNumber *)page |
|
success:(void (^)(NSMutableArray *arr))success |
|
failure:(void (^)(NSError *error))failure; |
|
|
|
@end |
|
|
|
|