| | |
| | | private String deep; // 상세 조회에서 가져올 데이터의 종류를 결정한다. |
| | | private boolean UseProject = false; // 프로젝트에서 사용중인 이슈타입을 가져올때 사용 |
| | | |
| | | private Long companyId; |
| | | private Long ispId; |
| | | private Long hostingId; |
| | | |
| | | public IssueTypeCondition(){} |
| | | |
| | | public static IssueTypeCondition make(Map<String, Object> params) { |
| | |
| | | public void setUseProject(boolean useProject) { |
| | | UseProject = useProject; |
| | | } |
| | | |
| | | public Long getCompanyId() { |
| | | return companyId; |
| | | } |
| | | |
| | | public void setCompanyId(Long companyId) { |
| | | this.companyId = companyId; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |