PoolReportInfo.h
837 Bytes
//
// PoolReportInfo.h
// PoolSdk
//
// Created by winFan on 12/21/15.
// Copyright (c) 2015 winFan. All rights reserved.
//
#import "PoolSdk/PoolBaseModel.h"
@interface PoolReportInfo : PoolBaseModel
@property(nonatomic, strong)NSString *serverId;
@property(nonatomic, strong)NSString *serverName;
@property(nonatomic, strong)NSString *playerId;
@property(nonatomic, strong)NSString *playerName;//所在服务器id
@property(nonatomic, strong)NSString *playerLevel;
@property(nonatomic, strong)NSString *custom;
@property(nonatomic, strong)NSString *reportType;
@property(nonatomic, strong)NSString *openId;
#define REPORT_URL @"http://public.sdk.gzyouai.com:9030/sdk/statistic"
#define REPORT_OPEN @"OPEN"
#define REPORT_ENTER @"ENTER"
#define REPORT_CREATEROLE @"CREATEROLE"
#define REPORT_ROLEUPGRADE @"ROLEUPGRADE"
@end