jwt-token的发行

This commit is contained in:
none
2023-02-16 15:00:22 +08:00
parent 0e51cd7ceb
commit 53b3a8645f
11 changed files with 173 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ package xyz.playedu.api.request;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
import xyz.playedu.api.types.ImageCaptchaRequestInterface;
import xyz.playedu.api.request.types.ImageCaptchaRequestInterface;
import java.io.Serializable;

View File

@@ -0,0 +1,8 @@
package xyz.playedu.api.request.types;
public interface ImageCaptchaRequestInterface {
String getCaptchaValue();
String getCaptchaKey();
}