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.
24 lines
534 B
24 lines
534 B
// |
|
// QueryFare.h |
|
// tongxin |
|
// |
|
// Created by ArJun on 2018/8/17. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseModel.h" |
|
|
|
@interface QueryFare : baseModel |
|
/* |
|
id :[str] |
|
timestamp :[float] |
|
content :[str]*/ |
|
@property(nonatomic, copy) NSString *id; |
|
@property(nonatomic, assign) int timestampStr; |
|
@property(nonatomic, copy) NSString *content; |
|
|
|
//删除话费流量消息的接口 |
|
+ (void)delectMessageSuccess:(void (^)(id))success |
|
failure:(void (^)(void))failure; |
|
|
|
@end
|
|
|