| | |
| | | package kr.wisestone.owl.web.form; |
| | | |
| | | import com.google.common.collect.Lists; |
| | | import kr.wisestone.owl.domain.Issue; |
| | | import kr.wisestone.owl.util.ConvertUtil; |
| | | import kr.wisestone.owl.util.MapUtil; |
| | | import kr.wisestone.owl.vo.CompanyFieldVo; |
| | |
| | | private String companyManager; |
| | | private String companyTel; |
| | | private String companyUrl; |
| | | private String ipStart; |
| | | private String ipEnd; |
| | | private String companyEmail; |
| | | private String companyMemo; |
| | | private String companyTypeName; |
| | | private String parentSectorName; |
| | | private String childSectorName; |
| | | private String regionName; |
| | | private String statusName; |
| | | |
| | | private String ispName; |
| | | private String ispCode; |
| | |
| | | |
| | | private List<Map<String, Object>> files = Lists.newArrayList(); // api용 첨부파일 |
| | | private Long parentIssueId; // 상위 이슈 |
| | | private String isApi; |
| | | private String isApi = Issue.IS_API_NO; |
| | | private List<String> downIssuesStatus = Lists.newArrayList(); //하위이슈 상태 |
| | | |
| | | private Boolean inheritYn; |
| | | |
| | | public IssueForm() { |
| | | } |
| | |
| | | if (MapUtil.getString(params, "companyUrl") != null) { |
| | | form.setCompanyUrl(MapUtil.getString(params, "companyUrl")); |
| | | } |
| | | if (MapUtil.getString(params, "ipStart") != null) { |
| | | form.setIpStart(MapUtil.getString(params, "ipStart")); |
| | | } |
| | | if (MapUtil.getString(params, "ipEnd") != null) { |
| | | form.setIpEnd(MapUtil.getString(params, "ipEnd")); |
| | | } |
| | | if (MapUtil.getString(params, "companyEmail") != null) { |
| | | form.setCompanyEmail(MapUtil.getString(params, "companyEmail")); |
| | | } |
| | | if (MapUtil.getString(params, "companyMemo") != null) { |
| | | form.setCompanyMemo(MapUtil.getString(params, "companyMemo")); |
| | | } |
| | | if (MapUtil.getString(params, "companyTypeName") != null) { |
| | | form.setCompanyTypeName(MapUtil.getString(params, "companyTypeName")); |
| | | } |
| | | if (MapUtil.getString(params, "parentSectorName") != null) { |
| | | form.setParentSectorName(MapUtil.getString(params, "parentSectorName")); |
| | | } |
| | | if (MapUtil.getString(params, "childSectorName") != null) { |
| | | form.setChildSectorName(MapUtil.getString(params, "childSectorName")); |
| | | } |
| | | if (MapUtil.getString(params, "regionName") != null) { |
| | | form.setRegionName(MapUtil.getString(params, "regionName")); |
| | | } |
| | | if (MapUtil.getString(params, "statusName") != null) { |
| | | form.setStatusName(MapUtil.getString(params, "statusName")); |
| | | } |
| | | |
| | | if (MapUtil.getString(params, "ispName") != null) { |
| | |
| | | } |
| | | if (MapUtil.getString(params, "hostingMemo") != null) { |
| | | form.setHostingMemo(MapUtil.getString(params, "hostingMemo")); |
| | | } |
| | | |
| | | if (MapUtil.getBoolean(params, "inheritYn") != null) { |
| | | form.setInheritYn(MapUtil.getBoolean(params, "inheritYn")); |
| | | } |
| | | |
| | | return form; |
| | |
| | | this.companyUrl = companyUrl; |
| | | } |
| | | |
| | | public String getIpStart() { |
| | | return ipStart; |
| | | } |
| | | |
| | | public void setIpStart(String ipStart) { |
| | | this.ipStart = ipStart; |
| | | } |
| | | |
| | | public String getIpEnd() { |
| | | return ipEnd; |
| | | } |
| | | |
| | | public void setIpEnd(String ipEnd) { |
| | | this.ipEnd = ipEnd; |
| | | } |
| | | |
| | | public String getCompanyEmail() { |
| | | return companyEmail; |
| | | } |
| | |
| | | public void setHostingMemo(String hostingMemo) { |
| | | this.hostingMemo = hostingMemo; |
| | | } |
| | | |
| | | public String getCompanyTypeName() { |
| | | return companyTypeName; |
| | | } |
| | | |
| | | public void setCompanyTypeName(String companyTypeName) { |
| | | this.companyTypeName = companyTypeName; |
| | | } |
| | | |
| | | public String getParentSectorName() { |
| | | return parentSectorName; |
| | | } |
| | | |
| | | public void setParentSectorName(String parentSectorName) { |
| | | this.parentSectorName = parentSectorName; |
| | | } |
| | | |
| | | public String getChildSectorName() { |
| | | return childSectorName; |
| | | } |
| | | |
| | | public void setChildSectorName(String childSectorName) { |
| | | this.childSectorName = childSectorName; |
| | | } |
| | | |
| | | public String getRegionName() { |
| | | return regionName; |
| | | } |
| | | |
| | | public void setRegionName(String regionName) { |
| | | this.regionName = regionName; |
| | | } |
| | | |
| | | public String getStatusName() { |
| | | return statusName; |
| | | } |
| | | |
| | | public void setStatusName(String statusName) { |
| | | this.statusName = statusName; |
| | | } |
| | | |
| | | public Boolean getInheritYn() { |
| | | return inheritYn; |
| | | } |
| | | |
| | | public void setInheritYn(Boolean inheritYn) { |
| | | this.inheritYn = inheritYn; |
| | | } |
| | | } |