From d135420ccb267c97e5eddc71d6f34a9fad254872 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 화, 14 12월 2021 17:45:02 +0900 Subject: [PATCH] 이슈 리스트 검색 사용자 정의필드 검색 변경[의견] --- src/main/java/kr/wisestone/owl/domain/CompanyField.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/domain/CompanyField.java b/src/main/java/kr/wisestone/owl/domain/CompanyField.java index 52618f8..d733e82 100644 --- a/src/main/java/kr/wisestone/owl/domain/CompanyField.java +++ b/src/main/java/kr/wisestone/owl/domain/CompanyField.java @@ -16,8 +16,11 @@ private String name; private String manager; private String tel; + private String url; private String email; private String memo; + private Long ispId; + private Long hostingId; public CompanyField() {} @@ -68,4 +71,28 @@ public void setMemo(String memo) { this.memo = memo; } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public Long getIspId() { + return ispId; + } + + public void setIspId(Long ispId) { + this.ispId = ispId; + } + + public Long getHostingId() { + return hostingId; + } + + public void setHostingId(Long hostingId) { + this.hostingId = hostingId; + } } -- Gitblit v1.8.0