1
0
mirror of synced 2026-02-21 20:07:49 +08:00

🎨 将枚举类移到enums包下

This commit is contained in:
yadong.zhang
2019-07-15 10:40:42 +08:00
parent fa2b9114d1
commit bfe2122962
6 changed files with 6 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
package me.zhyd.oauth.model;
package me.zhyd.oauth.enums;
import me.zhyd.oauth.utils.StringUtils;

View File

@@ -1,4 +1,4 @@
package me.zhyd.oauth.model;
package me.zhyd.oauth.enums;
/**
* 钉钉授权登录时的异常状态码

View File

@@ -1,4 +1,4 @@
package me.zhyd.oauth.model;
package me.zhyd.oauth.enums;
/**
* 今日头条授权登录时的异常状态码

View File

@@ -5,6 +5,7 @@ import cn.hutool.http.HttpResponse;
import com.alibaba.fastjson.JSONObject;
import me.zhyd.oauth.config.AuthConfig;
import me.zhyd.oauth.config.AuthSource;
import me.zhyd.oauth.enums.AuthBaiduErrorCode;
import me.zhyd.oauth.exception.AuthException;
import me.zhyd.oauth.model.*;
import me.zhyd.oauth.utils.UrlBuilder;

View File

@@ -6,6 +6,7 @@ import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import me.zhyd.oauth.config.AuthConfig;
import me.zhyd.oauth.config.AuthSource;
import me.zhyd.oauth.enums.AuthDingTalkErrorCode;
import me.zhyd.oauth.exception.AuthException;
import me.zhyd.oauth.model.*;
import me.zhyd.oauth.utils.GlobalAuthUtil;

View File

@@ -5,6 +5,7 @@ import cn.hutool.http.HttpResponse;
import com.alibaba.fastjson.JSONObject;
import me.zhyd.oauth.config.AuthConfig;
import me.zhyd.oauth.config.AuthSource;
import me.zhyd.oauth.enums.AuthToutiaoErrorCode;
import me.zhyd.oauth.exception.AuthException;
import me.zhyd.oauth.model.*;
import me.zhyd.oauth.utils.UrlBuilder;