From 261950c3d8e20fb94141c03b37a2872f75477831 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 14 1월 2022 21:07:15 +0900 Subject: [PATCH] Merge branch 'master' of http://192.168.0.28:9001/r/owl-kisa --- 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