1、变更推送为阿里云推,清除云信IM以及推送内容;
2、消息页面全新改版; 3、部分微小Bug修复
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// AppMonitorMeasureValue.h
|
||||
// AppMonitor
|
||||
//
|
||||
// Created by christ.yuj on 15/2/15.
|
||||
// Copyright (c) 2015年 君展. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
/**
|
||||
* 监控指标值
|
||||
*
|
||||
*/
|
||||
|
||||
@interface AppMonitorMeasureValue : NSObject
|
||||
|
||||
/**
|
||||
* 耗时操作是否已经完成
|
||||
*/
|
||||
@property (nonatomic, assign) BOOL isFinish;
|
||||
@property (nonatomic, strong) NSNumber * offset;
|
||||
@property (nonatomic, strong) NSNumber * value;
|
||||
|
||||
- (instancetype)initWithValue:(NSNumber *)value;
|
||||
- (instancetype)initWithValue:(NSNumber *)value offset:(NSNumber *)offset;
|
||||
- (void)merge:(AppMonitorMeasureValue *)measureValue;
|
||||
//为了json序列化
|
||||
- (NSDictionary *)jsonDict;
|
||||
//json反序列化
|
||||
- (instancetype)initWithDictionary:(NSDictionary *)dictionary;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user