From 9f8395fab13ca4b230a0f7d62636e209745c91d4 Mon Sep 17 00:00:00 2001 From: lrj <owen.stl@gmail.com> Date: 星期日, 28 九月 2025 14:16:18 +0800 Subject: [PATCH] feat: 完善注册流程的文件上传功能 --- backend/src/main/java/com/rongyichuang/auth/dto/LoginResponse.java | 12 +----------- 1 files changed, 1 insertions(+), 11 deletions(-) diff --git a/backend/src/main/java/com/rongyichuang/auth/dto/LoginResponse.java b/backend/src/main/java/com/rongyichuang/auth/dto/LoginResponse.java index a124112..480bc58 100644 --- a/backend/src/main/java/com/rongyichuang/auth/dto/LoginResponse.java +++ b/backend/src/main/java/com/rongyichuang/auth/dto/LoginResponse.java @@ -232,16 +232,14 @@ private String name; private String phone; private String description; - private Integer auditState; // 瀹℃牳鐘舵�侊細0-绛夊緟瀹℃牳锛�1-瀹℃牳閫氳繃锛�2-涓嶉�氳繃 public PlayerInfo() {} - public PlayerInfo(Long id, String name, String phone, String description, Integer auditState) { + public PlayerInfo(Long id, String name, String phone, String description) { this.id = id; this.name = name; this.phone = phone; this.description = description; - this.auditState = auditState; } // Getters and Setters @@ -275,14 +273,6 @@ public void setDescription(String description) { this.description = description; - } - - public Integer getAuditState() { - return auditState; - } - - public void setAuditState(Integer auditState) { - this.auditState = auditState; } } } \ No newline at end of file -- Gitblit v1.8.0