Skip to content

Commit

Permalink
merge : 1-branch, 3-branch change BaseTimeEntity to BaseTime
Browse files Browse the repository at this point in the history
  • Loading branch information
sjmjys954646 committed Oct 8, 2023
1 parent fc6e946 commit 9374cae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/example/demo/mentoring/MentorPost.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.example.demo.mentoring;

import com.example.demo.account.Account;
import com.example.demo.config.utils.BaseTimeEntity;
import com.example.demo.config.utils.BaseTime;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
Expand All @@ -13,7 +13,7 @@
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Entity
@Table(name = "mentorPost")
public class MentorPost extends BaseTimeEntity {
public class MentorPost extends BaseTime {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
Expand Down

0 comments on commit 9374cae

Please sign in to comment.