| | |
| | | private User user; |
| | | |
| | | @ManyToOne(fetch = FetchType.LAZY) |
| | | @JoinColumn(name = "project_id") |
| | | private Project project; |
| | | |
| | | |
| | | @ManyToOne(fetch = FetchType.LAZY) |
| | | @JoinColumn(name = "issue_type_id") |
| | | private IssueType issueType; |
| | | |
| | | @ManyToOne(fetch = FetchType.LAZY) |
| | | @ManyToOne(fetch = FetchType.EAGER) |
| | | @JoinColumn(name = "custom_field_id") |
| | | private CustomField customField; |
| | | |
| | |
| | | public void setCustomField(CustomField customField) { |
| | | this.customField = customField; |
| | | } |
| | | |
| | | public Project getProject() { |
| | | return project; |
| | | } |
| | | |
| | | public void setProject(Project project) { |
| | | this.project = project; |
| | | } |
| | | } |