Skip to content

Instantly share code, notes, and snippets.

@sumanentc
Created October 26, 2021 07:40
Show Gist options
  • Save sumanentc/79109149a6f3af34e51a2bb293e2106b to your computer and use it in GitHub Desktop.
Save sumanentc/79109149a6f3af34e51a2bb293e2106b to your computer and use it in GitHub Desktop.
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class Player implements Serializable {
private static final long serialVersionUID = 1389818123283358176L;
@QuerySqlField(index = true)
private Long id;
@QueryTextField
@QuerySqlField
private String name;
@QueryTextField
@QuerySqlField(index = true)
private String team;
@QuerySqlField
private double salary;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment