Skip to content

Commit

Permalink
feat : 게시글 번호 기능 개발 전까지 게시글 번호를 1로 고정
Browse files Browse the repository at this point in the history
- @Builder.Default 를 사용하여 게시글 번호의 기본값이 사라지지 않도록 설정
- number = 1 로 고정
- 관련 이슈 : #64
  • Loading branch information
oowtl committed Jan 9, 2025
1 parent ee7185b commit a0396d7
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public class TaskBoard extends BaseEntity {
@Column(name = "id", nullable = false)
private Long id;

// TODO : #64 - 업무 관리 게시글 번호 채번 기능
@Builder.Default
@Column(name = "number", nullable = false)
private Integer number = 1;

Expand Down

0 comments on commit a0396d7

Please sign in to comment.