From 9cefc77815ab070cbd6cb410da30307f1df31e34 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 월, 03 1월 2022 10:21:21 +0900 Subject: [PATCH] 검색에서 검색된 이슈를 클릭시 상세화면으로 가는데 x누르면 이전 목록이 보이도록 수정 --- src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 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 c5ca3ae..1c1aee2 100644 --- a/src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java +++ b/src/main/java/kr/wisestone/owl/vo/IssueHostingVo.java @@ -5,8 +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; @@ -21,12 +24,28 @@ this.id = id; } + public Long getHostingId() { + return hostingId; + } + + public void setHostingId(Long hostingId) { + this.hostingId = hostingId; + } + public String getName() { return name; } public void setName(String name) { this.name = name; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; } public String getManager() { @@ -60,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