Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-hao committed Nov 10, 2023
2 parents f06e168 + ae2e00f commit 98167a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import lombok.Setter;
import lombok.SneakyThrows;

import java.io.Serializable;
import java.util.*;
import java.util.stream.Collectors;

Expand All @@ -18,7 +19,8 @@
@SuppressWarnings("all")
@Getter
@Setter
public class Param implements Cloneable {
public class Param implements Cloneable, Serializable {
private static final long serialVersionUID = 1L;

/**
* 条件
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import lombok.Setter;
import lombok.SneakyThrows;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
Expand All @@ -16,7 +17,8 @@
*/
@Getter
@Setter
public class Term implements Cloneable {
public class Term implements Serializable,Cloneable {
private static final long serialVersionUID = 1L;

/**
* 字段
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>7.11.2</version>
<version>7.17.13</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 98167a9

Please sign in to comment.