From 255cb7f4d30b6762480427253dee33f0e6b61d77 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 목, 09 12월 2021 14:31:25 +0900 Subject: [PATCH] 프로젝트 이름 클릭시 이슈리스트로 이동 --- src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java b/src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java index f79d1a5..1c1aee2 100644 --- a/src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java +++ b/src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java @@ -5,9 +5,11 @@ */ public class IssueHostingVo extends BaseVo{ private Long id; + private Long hostingId; private String name; private String code; private String manager; + private String url; private String tel; private String email; private String memo; @@ -20,6 +22,14 @@ public void setId(Long id) { this.id = id; + } + + public Long getHostingId() { + return hostingId; + } + + public void setHostingId(Long hostingId) { + this.hostingId = hostingId; } public String getName() { @@ -69,4 +79,12 @@ public void setMemo(String memo) { this.memo = memo; } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } } -- Gitblit v1.8.0