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.
25 lines
554 B
25 lines
554 B
5 years ago
|
package com.epmet.constant;
|
||
|
|
||
|
/**
|
||
|
* @Author zxc
|
||
|
* @CreateTime 2020/7/30 10:05
|
||
|
*/
|
||
|
public interface AuthHttpUrlConstant {
|
||
|
|
||
|
/**
|
||
|
* 注册url
|
||
|
*/
|
||
|
String REGISTER_URL = "https://epmet-cloud.elinkservice.cn/api/third/pacustomer/register";
|
||
|
|
||
|
/**
|
||
|
* 获取客户信息url
|
||
|
*/
|
||
|
String CUSTOMER_MSG_URL = "https://epmet-cloud.elinkservice.cn/api/third/customermp/getcustomermsg/";
|
||
|
|
||
|
/**
|
||
|
* 登录url
|
||
|
*/
|
||
|
String RESI_AND_WORK_LOGIN_URL = "https://epmet-cloud.elinkservice.cn/api/third/customermp/resiandworklogin";
|
||
|
|
||
|
}
|