Skip to content

Commit

Permalink
[refactor] : BaseEntity 상속
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbang105 committed Jun 12, 2024
1 parent ed3d998 commit 2f74cea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/main/java/org/dgu/backend/domain/UpbitKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import org.dgu.backend.common.BaseEntity;

import java.util.UUID;

@Entity
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Getter
@Table(name = "upbit_keys")
public class UpbitKey {
public class UpbitKey extends BaseEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "upbit_keys_id")
Expand Down

0 comments on commit 2f74cea

Please sign in to comment.