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.
25 lines
534 B
25 lines
534 B
1 year ago
|
//
|
||
|
// 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
|