Skip to content

Commit

Permalink
git commit -m "feat/#13 program List 반환 api 개발"
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Nov 25, 2023
1 parent 013eb7c commit fcb5d5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/sopt/sopkerton/program/domain/Program.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public abstract class Program extends BaseEntity {

private String imageUrl;
private String type;
@Enumerated(value = EnumType.STRING)
private Status status;

@Column(nullable = false)
private String organizationName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

@Getter
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
public enum Category {
VOLUNTEERING("봉사"),
EMPLOYMENT("취업");

private final String value;
public enum Status {
REGISTER, DONE;
}

0 comments on commit fcb5d5d

Please sign in to comment.