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.
36 lines
928 B
36 lines
928 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @Author zxc
|
|
* @DateTime 2021/1/19 上午10:26
|
|
*/
|
|
public interface SsoConstant {
|
|
|
|
/**
|
|
* 酒城e通appId
|
|
*/
|
|
String WINE_CITY_E_OPEN_APP_ID = "64929543";
|
|
|
|
String USER_INFO_IS_NULL = "【jcetApiService.getUserInfoByTicket(formDTO.getTicket()】结果为空......";
|
|
|
|
String INSERT_UPDATE_USER_FAILURE = "新增或更新user_weChat失败......";
|
|
|
|
String USER_ID_IS_NULL = "userId为空,生成token失败......";
|
|
|
|
String CUSTOMER_ID_IS_NULL = "customerId为空,缓存放置token失败......";
|
|
|
|
/**
|
|
* 日照 Ticket 校验接口地址,SSO调用
|
|
*/
|
|
String TICKET_TOKEN_URL = "https://sso.shuzirizhao.cn/sso/checkTicket";
|
|
|
|
/**
|
|
* 日照 获取登陆身份信息
|
|
*/
|
|
String USER_INFO_URL = "https://sso.shuzirizhao.cn/sso/userinfo";
|
|
|
|
/**
|
|
* 签名秘钥
|
|
*/
|
|
String SECRET_KEY = "YQfyZtAmDbYHTBaHPSx3GZeX7x2ip7ik";
|
|
}
|
|
|