|
@@ -4,10 +4,7 @@ import lombok.AllArgsConstructor;
|
|
|
import lombok.Data;
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
-import javax.persistence.Column;
|
|
|
-import javax.persistence.Entity;
|
|
|
-import javax.persistence.Id;
|
|
|
-import javax.persistence.Table;
|
|
|
+import javax.persistence.*;
|
|
|
|
|
|
@Data
|
|
|
@AllArgsConstructor
|
|
@@ -15,7 +12,9 @@ import javax.persistence.Table;
|
|
|
@Entity
|
|
|
@Table(name = "publish_content_sort_log")
|
|
|
public class PublishContentSortLog {
|
|
|
+
|
|
|
@Id
|
|
|
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
|
private Long id;
|
|
|
@Column(name = "gh_id")
|
|
|
private String ghId;
|