From 939ae7c3a7f8baf61039a77d5a60d10e90daf065 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 28 12월 2021 15:54:26 +0900 Subject: [PATCH] API 토큰 복사 버튼 오류 수정 --- 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