From 4f4fd9ee8b3315bc433b1893dbff008efdb03230 Mon Sep 17 00:00:00 2001 From: jhjang <jhjang@maprex.co.kr> Date: 수, 22 12월 2021 16:36:06 +0900 Subject: [PATCH] - API 설정 화면에서 프로젝트에서 설정된 이슈유형만 보여주도록 수정 --- src/main/java/kr/wisestone/owl/web/form/CompanyFieldForm.java | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/src/main/java/kr/wisestone/owl/web/form/CompanyFieldForm.java b/src/main/java/kr/wisestone/owl/web/form/CompanyFieldForm.java index e50f057..4d7b4a0 100644 --- a/src/main/java/kr/wisestone/owl/web/form/CompanyFieldForm.java +++ b/src/main/java/kr/wisestone/owl/web/form/CompanyFieldForm.java @@ -10,7 +10,11 @@ public class CompanyFieldForm extends UsePartnerForm { private String manager; private String tel; + private String url; private String memo; + private Long ispId; + private Long hostingId; + private List<Long> removeIds = Lists.newArrayList(); public CompanyFieldForm() { @@ -40,6 +44,14 @@ this.tel = tel; } + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + public String getMemo() { return memo; } @@ -48,6 +60,22 @@ this.memo = memo; } + 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; + } + public List<Long> getRemoveIds() { return removeIds; } -- Gitblit v1.8.0