package com.moral.screen.common;
|
|
/**
|
* Created by haijiang on 2017/5/16.
|
*/
|
|
public class API {
|
public static final String BASE_HTTP = "http://192.168.1.101:8090/screen_api_v2";
|
public static final String LOGIN = BASE_HTTP+"/mobile/login";
|
public static final String DEVICES = BASE_HTTP+"/mobile/devices";
|
public static final String SENSORS = BASE_HTTP+"/mobile/sensors";
|
public static final String SENSOR = BASE_HTTP+"/mobile/sensor";
|
|
}
|