//
// IPUServerPage.h
// IPUMobile
//
// Created by 秋林 on 2019/1/15.
// Copyright © 2019 Asiainfo. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface IPUServerPage : NSObject
{
NSMutableDictionary *serverActionDict;
NSString *SERVER_ACTION_CONFIG;
NSString *CONFIG_PATH;
}
+ (NSString *)getTemplate:(NSString *)action;
+ (NSString *)getData:(NSString *)action;
@end
NS_ASSUME_NONNULL_END
|