| | |
| | | private String name; |
| | | private String description; |
| | | private String color; |
| | | private Long useCompany; |
| | | private Long usePartner; |
| | | |
| | | @ManyToOne(fetch = FetchType.LAZY) |
| | | @JoinColumn(name = "workspace_id") |
| | |
| | | @ManyToOne(fetch = FetchType.LAZY) |
| | | @JoinColumn(name = "project_id") |
| | | private Project project; |
| | | |
| | | @ManyToOne(fetch = FetchType.LAZY) |
| | | @JoinColumn(name = "complete_issue_status_id") |
| | | private IssueStatus issueStatus; |
| | | |
| | | /*@ManyToOne(fetch = FetchType.LAZY) |
| | | @JoinColumn(name = "company_id") |
| | |
| | | this.project = project; |
| | | } |
| | | |
| | | public Long getUseCompany() { |
| | | return useCompany; |
| | | public Long getUsePartner() { |
| | | return usePartner; |
| | | } |
| | | |
| | | public void setUseCompany(Long useCompany) { |
| | | this.useCompany = useCompany; |
| | | public void setUsePartner(Long usePartner) { |
| | | this.usePartner = usePartner; |
| | | } |
| | | |
| | | public IssueStatus getIssueStatus() { |
| | | return issueStatus; |
| | | } |
| | | |
| | | public void setIssueStatus(IssueStatus issueStatus) { |
| | | this.issueStatus = issueStatus; |
| | | } |
| | | } |