From 2fed2749b65c7926ab20fc45a830f5d84adaff41 Mon Sep 17 00:00:00 2001
From: jinhyuk jang <imlovee@naver.com>
Date: 일, 12 12월 2021 23:22:00 +0900
Subject: [PATCH] - 일반 사용자 로그인시 이슈유형 메뉴 정상적으로 뜨도록 수정 - 이슈 메뉴 클릭시 프로젝트에 속해 있는 사용자는 모든 이슈 보도록 수정

---
 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