第三方授权登录,加上配置

This commit is contained in:
thiszhc
2023-06-15 01:23:07 +08:00
parent 76dc239875
commit 5110961eb9
5 changed files with 378 additions and 1 deletions

View File

@ -26,7 +26,12 @@ public enum DeviceType {
/**
* 小程序端
*/
XCX("xcx");
XCX("xcx"),
/**
* social第三方端
*/
SOCIAL("social");
private final String device;
}