-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BE/#34] Feat : 이슈 마일스톤 추가/수정 API 구현
- Loading branch information
Showing
5 changed files
with
48 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
.../main/java/com/codesquad/issuetracker/hamill/dto/request/UpdateAllocatedAssigneesDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.codesquad.issuetracker.hamill.dto.request; | ||
|
||
public class UpdateAllocatedAssigneesDto { | ||
|
||
private Long userId; | ||
|
||
private Integer milestoneId; | ||
|
||
private UpdateAllocatedAssigneesDto(Long userId, Integer milestoneId) { | ||
this.userId = userId; | ||
this.milestoneId = milestoneId; | ||
} | ||
|
||
public static UpdateAllocatedAssigneesDto of(Long userId, Integer milestoneId) { | ||
return new UpdateAllocatedAssigneesDto(userId, milestoneId); | ||
} | ||
|
||
public Long getUserId() { | ||
return userId; | ||
} | ||
|
||
public Integer getMilestoneId() { | ||
return milestoneId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters