-
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.
- Loading branch information
1 parent
09ea536
commit 018ab2d
Showing
21 changed files
with
43 additions
and
27 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.32 KB
server/build/classes/java/main/com/example/hackathon/dataset/domain/DataField.class
Binary file not shown.
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
Binary file removed
BIN
-1.76 KB
server/build/tmp/compileJava/compileTransaction/stash-dir/AwsController.class.uniqueId9
Binary file not shown.
Binary file removed
BIN
-1.81 KB
server/build/tmp/compileJava/compileTransaction/stash-dir/AwsS3Config.class.uniqueId3
Binary file not shown.
Binary file removed
BIN
-5.46 KB
server/build/tmp/compileJava/compileTransaction/stash-dir/AwsUtils.class.uniqueId1
Binary file not shown.
Binary file removed
BIN
-903 Bytes
...r/build/tmp/compileJava/compileTransaction/stash-dir/HackathonApplication.class.uniqueId6
Binary file not shown.
Binary file removed
BIN
-3.46 KB
...mpileJava/compileTransaction/stash-dir/OAuth2AuthenticationFailureHandler.class.uniqueId4
Binary file not shown.
Binary file removed
BIN
-6.69 KB
...mpileJava/compileTransaction/stash-dir/OAuth2AuthenticationSuccessHandler.class.uniqueId0
Binary file not shown.
Binary file removed
BIN
-6.45 KB
.../build/tmp/compileJava/compileTransaction/stash-dir/OAuth2UserInfoFactory.class.uniqueId5
Binary file not shown.
Binary file removed
BIN
-9.97 KB
server/build/tmp/compileJava/compileTransaction/stash-dir/SecurityConfig.class.uniqueId8
Binary file not shown.
Binary file removed
BIN
-3.92 KB
...ld/tmp/compileJava/compileTransaction/stash-dir/TokenAuthenticationFilter.class.uniqueId2
Binary file not shown.
Binary file removed
BIN
-1.76 KB
server/build/tmp/compileJava/compileTransaction/stash-dir/WebMvcConfig.class.uniqueId7
Binary file not shown.
Binary file modified
BIN
+50 Bytes
(100%)
server/build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
18 changes: 18 additions & 0 deletions
18
server/src/main/java/com/example/hackathon/dataset/domain/DataField.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,18 @@ | ||
package com.example.hackathon.dataset.domain; | ||
|
||
import jakarta.persistence.*; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
@Entity | ||
public class DataField { | ||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
private Long id; | ||
@Column(name = "titleName") | ||
private String titleName; | ||
@Column(name = "image") | ||
private String image; | ||
} |
9 changes: 9 additions & 0 deletions
9
server/src/main/java/com/example/hackathon/dataset/repository/DataFieldRepository.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,9 @@ | ||
package com.example.hackathon.dataset.repository; | ||
|
||
import com.example.hackathon.dataset.domain.DataField; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
@Repository | ||
public interface DataFieldRepository extends JpaRepository<DataField, Long> { | ||
} |