From bec58fa7fe4fae2deac88200d8d939e12ec8a08f Mon Sep 17 00:00:00 2001
From: lrj <owen.stl@gmail.com>
Date: 星期五, 03 十月 2025 22:26:39 +0800
Subject: [PATCH] 修复小程序WXS日期显示问题并重新设计【我的】页面
---
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