新增加第三方登录授权功能

This commit is contained in:
thiszhc
2023-06-10 21:39:31 +08:00
parent 204d882a8e
commit e4b405491f
12 changed files with 466 additions and 3 deletions

View File

@ -26,7 +26,9 @@ public enum DeviceType {
/**
* 小程序端
*/
XCX("xcx");
XCX("xcx"),
auth("auth");
private final String device;
}