代码格式化

This commit is contained in:
none
2023-04-07 10:03:45 +08:00
parent fc8ff14a24
commit f437b3ad4d
252 changed files with 7467 additions and 5770 deletions

View File

@@ -1,11 +1,18 @@
/**
* This file is part of the PlayEdu.
* (c) 杭州白书科技有限公司
*/
package xyz.playedu.api.request.frontend;
import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
/**
* @Author 杭州白书科技有限公司
*
* @create 2023/3/13 09:22
*/
@Data
@@ -18,5 +25,4 @@ public class ChangePasswordRequest {
@NotBlank(message = "请输入新密码")
@JsonProperty("new_password")
private String newPassword;
}

View File

@@ -1,10 +1,16 @@
/**
* This file is part of the PlayEdu.
* (c) 杭州白书科技有限公司
*/
package xyz.playedu.api.request.frontend;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
/**
* @Author 杭州白书科技有限公司
*
* @create 2023/3/20 17:12
*/
@Data

View File

@@ -1,12 +1,20 @@
/**
* This file is part of the PlayEdu.
* (c) 杭州白书科技有限公司
*/
package xyz.playedu.api.request.frontend;
import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
import xyz.playedu.api.request.backend.types.ImageCaptchaRequestInterface;
/**
* @Author 杭州白书科技有限公司
*
* @create 2023/3/10 13:13
*/
@Data
@@ -25,5 +33,4 @@ public class LoginPasswordRequest implements ImageCaptchaRequestInterface {
@NotBlank(message = "请输入验证码")
@JsonProperty("captcha_val")
private String captchaValue;
}