41 lines
2.5 KiB
Java
41 lines
2.5 KiB
Java
package http;
|
|
|
|
/**
|
|
* Created by 90432 on 2017/12/23.
|
|
*/
|
|
|
|
public class ApiConfig {
|
|
/* public static String BASE_URL="http://5597755.com/Lottery_server/get_init_data.php/";
|
|
public static String APPID="szo007";
|
|
public static String webUrl="https://www.dafaok88.com";*/
|
|
|
|
public static String BASE_PARENT_URL="https://wy.dou1.net/";
|
|
public static String BASE_URL= BASE_PARENT_URL + "api/";
|
|
public static String APPID="api/";
|
|
|
|
public static String UERREGISTER="user/register";
|
|
|
|
public static String GETCODE=BASE_URL+APPID+"user/getVerificationCode";//获取验证码的接口
|
|
public static String REGISTERCODE=BASE_URL+APPID+"user/registerUser";//注册接口;
|
|
public static String USERLOGIN=BASE_URL+APPID+"user/login";//登陆接口;\
|
|
public static String MYHISTROY=BASE_URL+APPID+"user/viewhistory";//我的浏览记录;
|
|
public static String MYNES=BASE_URL+APPID+"user/myNews";//我的新闻;
|
|
public static String MYCOMMENT=BASE_URL+APPID+"user/myComment";//我的评论
|
|
|
|
public static String NEWSINFO=BASE_URL+APPID+"news/getNewsInfo";//新闻详情
|
|
public static String NEWSDISUSSINFO=BASE_URL+APPID+"comment/getCommentByBusinessListPage";//新闻评论详情列表
|
|
public static String ADDNEWSDISUSS=BASE_URL+APPID+"comment/addComments";//添加评论
|
|
public static String ADDNEWSZAN=BASE_URL+APPID+"praise/updatePraise";
|
|
|
|
public static String ADDFAVATER=BASE_URL+APPID+"collection//updateCollection";//收藏级添加评论
|
|
public static String GETHOMEBANNER=BASE_URL+APPID+"news/getNewsBannerList";//获取首页bannner
|
|
public static String MYQRCODE=BASE_URL+APPID+"user/myQrcode";
|
|
//http://haotian.hoheng.cn/api/user/myQrcode
|
|
|
|
public static String CALLBACK_TEMP_STOP_PAY = BASE_PARENT_URL + "bts/payment/garage_notify"; //支付宝临停车位支付回调
|
|
public static String CALLBACK_RECHARGE_PAY = BASE_PARENT_URL + "bts/payment/user_wallet_recharge"; //支付宝用户充值余额下单回调
|
|
public static String CALLBACK_PROPERTY_PAY = BASE_PARENT_URL + "bts/payment/user_recharge"; //支付宝用户物业费等等下单回调(账单类型,1水费,2电费.3燃气费,4物业费,5车位管理费,6家政服务费,7报修支付费用)
|
|
public static String CALLBACK_HOUSEKEEPING_PAY = BASE_PARENT_URL + "bts/payment/serve_notify"; //支付宝家政服务正常下单回调
|
|
public static String CALLBACK_PAYMENT_PAY = BASE_PARENT_URL + "orderpaynotify/payment/notify"; //支付宝提交订单回调
|
|
}
|