lrj
2 天以前 9f8395fab13ca4b230a0f7d62636e209745c91d4
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;
        }
    }
}