From 375c18a6d2713ff19b22093eec57315992d8333f Mon Sep 17 00:00:00 2001
From: Codex Assistant <codex@example.com>
Date: 星期四, 06 十一月 2025 13:33:52 +0800
Subject: [PATCH] 增加评审下载
---
backend/src/main/java/com/rongyichuang/judge/dto/response/JudgeResponse.java | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/backend/src/main/java/com/rongyichuang/judge/dto/response/JudgeResponse.java b/backend/src/main/java/com/rongyichuang/judge/dto/response/JudgeResponse.java
index 28e6212..be73106 100644
--- a/backend/src/main/java/com/rongyichuang/judge/dto/response/JudgeResponse.java
+++ b/backend/src/main/java/com/rongyichuang/judge/dto/response/JudgeResponse.java
@@ -8,8 +8,12 @@
private String phone;
private Integer gender;
private String description;
+ private String title;
+ private String company;
+ private String introduction;
private String avatarUrl;
private List<TagResponse> specialties;
+ private List<TagResponse> tags;
public Long getId() {
return id;
@@ -67,6 +71,38 @@
this.specialties = specialties;
}
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title;
+ }
+
+ public String getCompany() {
+ return company;
+ }
+
+ public void setCompany(String company) {
+ this.company = company;
+ }
+
+ public String getIntroduction() {
+ return introduction;
+ }
+
+ public void setIntroduction(String introduction) {
+ this.introduction = introduction;
+ }
+
+ public List<TagResponse> getTags() {
+ return tags;
+ }
+
+ public void setTags(List<TagResponse> tags) {
+ this.tags = tags;
+ }
+
public static class TagResponse {
private Long id;
private String name;
--
Gitblit v1.8.0