Skip to content

Commit

Permalink
[fix][#28]cherry pick
Browse files Browse the repository at this point in the history
  • Loading branch information
sejoon00 committed Aug 13, 2024
1 parent f5deb26 commit e18887d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/server/bbo_gak/BboGakApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.scheduling.annotation.EnableScheduling;

@EnableScheduling
@EnableJpaAuditing
@SpringBootApplication
public class BboGakApplication {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.server.bbo_gak.domain.notification.entity;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public enum NotificationType {

RECRUIT("공고 마감");

private final String typeName;
}

0 comments on commit e18887d

Please sign in to comment.