From 139123919346d1d49f6e9eff4a42903cafd52097 Mon Sep 17 00:00:00 2001 From: MichaelWin Date: Fri, 31 Oct 2025 17:35:39 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=96=B0=E5=A2=9E=E3=80=91=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E4=BF=AE=E6=94=B9=E5=AF=86=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../corewing/app/dto/biz/ResetPassword.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/main/java/com/corewing/app/dto/biz/ResetPassword.java diff --git a/src/main/java/com/corewing/app/dto/biz/ResetPassword.java b/src/main/java/com/corewing/app/dto/biz/ResetPassword.java new file mode 100644 index 0000000..ac4dbaf --- /dev/null +++ b/src/main/java/com/corewing/app/dto/biz/ResetPassword.java @@ -0,0 +1,18 @@ +package com.corewing.app.dto.biz; + +import lombok.Data; + +@Data +public class ResetPassword { + + /** + * 用户id + */ + private Integer userId; + + /** + * 新密码 + */ + private String password; + +}