From d8a82b24ce7062a7d631e95a972891a4316fb355 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 월, 27 12월 2021 14:35:12 +0900 Subject: [PATCH] Merge branch 'master' of http://192.168.0.25:9001/r/owl-kisa --- 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