diff --git a/continew-admin-common/src/main/java/top/continew/admin/common/model/resp/CaptchaResp.java b/continew-admin-system/src/main/java/top/continew/admin/auth/model/resp/CaptchaResp.java similarity index 97% rename from continew-admin-common/src/main/java/top/continew/admin/common/model/resp/CaptchaResp.java rename to continew-admin-system/src/main/java/top/continew/admin/auth/model/resp/CaptchaResp.java index dd52ad54..fcd53e08 100644 --- a/continew-admin-common/src/main/java/top/continew/admin/common/model/resp/CaptchaResp.java +++ b/continew-admin-system/src/main/java/top/continew/admin/auth/model/resp/CaptchaResp.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package top.continew.admin.common.model.resp; +package top.continew.admin.auth.model.resp; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Builder; diff --git a/continew-admin-webapi/src/main/java/top/continew/admin/controller/common/CaptchaController.java b/continew-admin-webapi/src/main/java/top/continew/admin/controller/common/CaptchaController.java index 2085d9d3..c8b9a9de 100644 --- a/continew-admin-webapi/src/main/java/top/continew/admin/controller/common/CaptchaController.java +++ b/continew-admin-webapi/src/main/java/top/continew/admin/controller/common/CaptchaController.java @@ -47,7 +47,7 @@ import org.springframework.web.bind.annotation.*; import top.continew.admin.common.config.properties.CaptchaProperties; import top.continew.admin.common.constant.CacheConstants; -import top.continew.admin.common.model.resp.CaptchaResp; +import top.continew.admin.auth.model.resp.CaptchaResp; import top.continew.admin.system.service.OptionService; import top.continew.starter.cache.redisson.util.RedisUtils; import top.continew.starter.captcha.graphic.core.GraphicCaptchaService;