Skip to content

Commit

Permalink
bug fix: implements Serializable to adapt to cache (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou9584 authored Jan 3, 2023
1 parent cef6cc1 commit e5d86e0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import lombok.Data;

import javax.persistence.*;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
Expand All @@ -13,7 +14,7 @@
@Entity
@Table(name = "test_file_set", indexes = {@Index(columnList = "team_id")})
@Data
public class TestFileSet {
public class TestFileSet implements Serializable {
@Id
private String id;
private String buildType;
Expand Down

0 comments on commit e5d86e0

Please sign in to comment.