| 1234567891011121314151617181920212223 |
- //
- // ERPUtils.h
- // iSales-NPD
- //
- // Created by Jack on 2017/2/13.
- // Copyright © 2017年 United Software Applications, Inc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface ERPUtils : NSObject
- + (NSString *)orderStatus:(NSInteger)statusCode;
- + (NSString *)screenOfRequestString:(NSString *)urlString;
- + (void)googleAnalyticsSendRequestString:(NSString *)urlString WithScreen:(NSString *)screenName Action:(NSString *)action Extra:(NSDictionary *)extra;
- @end
|