| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // Constant.m
- // Apex Mobile
- //
- // Created by Ray on 14-3-1.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import "Constant.h"
- const int MAX_ROW=100;
- const int MAX_COLUMN=100;
- const int BEHAVIOR_SEARCH = 0;
- const int BEHAVIOR_RESULT = 1;
- const int AP_USER_AUTH = 1;
- const int AP_USER_NOT_AUTH = 2;
- const int AP_USER_NOT_EXIST = 3;
- const int AP_SESSION_EXPIRED = 4;
- const int AP_UPLOAD_SUCCESS = 4;
- const int AP_UPLOAD_FAIL = 5;
- const int RESULT_FALSE = 0;
- const int RESULT_TRUE = -1;
- const int RESULT_NET_ERROR = -3;
- const int RESULT_NET_NOTAVAILABLE = -4;
- const int RESULT_ERROR = -5;
- const int RESULT_LOCALFILE_ERROR = -7;
- const int RESULT_USERAUTH_ERROR = -9;
- const int RESULT_UPDATE_USERAUTH_ERROR = -11;
- const int RESULT_SESSION_EXPIRED = -13;
- const int RESULT_VER_LOW = -15;
- //const NSString* URL_UPDATE_AUTH = @"https://ra.apexshipping.com/login.php";
- //const NSString* URL_REQUEST_COUNT = @"https://ra.apexshipping.com/main.php";
- //const NSString* URL_REQUEST_RECORDS = @"https://ra.apexshipping.com/main.php";
- //const NSString* URL_RETRIEVE_PASS = @"https://ra.apexshipping.com/main.php";
- //const NSString* URL_REQUEST_DETAIL = @"https://ra.apexshipping.com/main.php";
- @implementation Constant
- @end
|