Skip to content

Instantly share code, notes, and snippets.

@henesgokdag
Created January 1, 2022 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henesgokdag/2d21abca2fe764fd5bb2463d5d0a2b7c to your computer and use it in GitHub Desktop.
Save henesgokdag/2d21abca2fe764fd5bb2463d5d0a2b7c to your computer and use it in GitHub Desktop.
@Data
@Document(indexName = "productindex")
public class Product {
@Id
private String id;
@Field(type = FieldType.Text, name = "name")
private String name;
@Field(type = FieldType.Double, name = "price")
private Double price;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment