| 12345678910111213141516171819202122 |
- //
- // ACNetwork.h
- // AntsContract
- //
- // Created by Ray on 12/26/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import "NetworkUtils.h"
- @interface ACNetwork : NetworkUtils
- +(int)Authorize : (NSString*) user password:(NSString*) password;
- +(NSString *) prepareUploadFile:(NSString*) file json:(NSMutableDictionary*)json;
- +(NSDictionary*)logout;
- +(NSDictionary*)request_DocList:(NSMutableDictionary*) params;
- +(NSDictionary*)new_document;
- +(NSDictionary*)save_document:(NSString*)file;
- @end
|