| | |
| | | private SocialType socialType; |
| | | private Long lastWorkspaceId; |
| | | private Long lastProjectId; |
| | | private Long lastIssueTypeId; |
| | | private Date lastLoginDate; |
| | | private String reservationNotifyTime; // 이메일 알림 시간 예정 |
| | | private String language; |
| | |
| | | |
| | | @OneToMany(mappedBy = "user", cascade = {CascadeType.ALL}, orphanRemoval = true) |
| | | private Set<ApiToken> apiTokens = new HashSet<>(); |
| | | |
| | | // @ManyToOne(targetEntity = Department.class, fetch = FetchType.LAZY) |
| | | // @JoinColumn(name="department_id") |
| | | // private Department department; |
| | | |
| | | public User() { |
| | | } |
| | |
| | | this.lastProjectId = lastProjectId; |
| | | } |
| | | |
| | | public Long getLastIssueTypeId() { |
| | | return lastIssueTypeId; |
| | | } |
| | | |
| | | public void setLastIssueTypeId(Long lastIssueTypeId) { |
| | | this.lastIssueTypeId = lastIssueTypeId; |
| | | } |
| | | |
| | | public String getAwsKey() { |
| | | return awsKey; |
| | | } |