From 5dd804cc2f9670a5ea0a77e197087e5f46eec564 Mon Sep 17 00:00:00 2001 From: snowykte0426 Date: Sun, 29 Mar 2026 22:06:31 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=ED=95=99=EC=83=9D=20GitHub=20?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../datagsm/sdk/openapi/model/Student.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/main/java/team/themoment/datagsm/sdk/openapi/model/Student.java b/src/main/java/team/themoment/datagsm/sdk/openapi/model/Student.java index a8fcea6..5897e2e 100644 --- a/src/main/java/team/themoment/datagsm/sdk/openapi/model/Student.java +++ b/src/main/java/team/themoment/datagsm/sdk/openapi/model/Student.java @@ -21,6 +21,8 @@ public class Student { private Integer dormitoryRoom; private Club majorClub; private Club autonomousClub; + private String githubId; + private String githubUrl; public Student() {} @@ -144,6 +146,22 @@ public void setAutonomousClub(Club autonomousClub) { this.autonomousClub = autonomousClub; } + public Optional getGithubId() { + return Optional.ofNullable(githubId); + } + + public void setGithubId(String githubId) { + this.githubId = githubId; + } + + public Optional getGithubUrl() { + return Optional.ofNullable(githubUrl); + } + + public void setGithubUrl(String githubUrl) { + this.githubUrl = githubUrl; + } + @Override public String toString() { return "Student{" + @@ -162,6 +180,8 @@ public String toString() { ", dormitoryRoom=" + dormitoryRoom + ", majorClub=" + majorClub + ", autonomousClub=" + autonomousClub + + ", githubId='" + githubId + '\'' + + ", githubUrl='" + githubUrl + '\'' + '}'; } } \ No newline at end of file From 8999e08b51851ac970889ee2d41597c9fddeb998 Mon Sep 17 00:00:00 2001 From: snowykte0426 Date: Sun, 29 Mar 2026 22:06:44 +0900 Subject: [PATCH 2/2] =?UTF-8?q?update:=20`1.5.0`=EB=A1=9C=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0e60c22..bca1442 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "team.themoment.datagsm.sdk" -version = "1.4.0" +version = "1.5.0" java { toolchain {