You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
782 B
18 lines
782 B
package com.example;
|
|
|
|
public class Config {
|
|
|
|
public static final String HOST = "http://169.254.115.53:8080/shixun/";
|
|
// 登录网址
|
|
public static final String URL_LOGIN = HOST + "LogLet";
|
|
// 注册网址
|
|
public static final String URL_SIGNUP = HOST + "RegLet";
|
|
// 获取问题网址
|
|
public static final String URL_GET_QUESTION = HOST + "Questions";
|
|
public static final String WEB_SITE = "http://169.254.115.53:8080/order";//内网接口
|
|
public static final String REQUEST_SHOP_URL = "/shop_list_data.json"; //店铺列表接口
|
|
// 获取试卷题目网址
|
|
public static final String URL_GET_TEST_QUESTION = HOST + "GetTestList";
|
|
public static final String URL_UP_USER_GRADE = HOST + "UpUserGrade";
|
|
}
|