feat(AuthConstants.java):补充小程序端的客户端ID常量信息

This commit is contained in:
有来技术 2021-10-09 00:48:19 +08:00
parent 04da45be6d
commit 2d9a00c332

View File

@ -1,15 +1,31 @@
package com.youlai.auth.common.constant;
/**
* 认证中心常量
*
* @author <a href="mailto:xianrui0365@163.com">xianrui</a>
* @date 2021/9/30
*/
public interface AuthConstants {
/**
* 接口文档 Knife4j 测试客户端ID
*/
String TEST_CLIENT_ID = "test";
/**
* 系统管理 web 客户端ID
*/
String ADMIN_CLIENT_ID = "mall-admin-web";
/**
* 移动端H5AndroidIOS客户端ID
*/
String APP_CLIENT_ID = "mall-app";
/**
* 小程序端微信小程序.... 客户端ID
*/
String WEAPP_CLIENT_ID = "mall-weapp";
}