ERPUtils.h 494 B

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