Skip to content

Instantly share code, notes, and snippets.

@hoangnt-2197
Created October 22, 2020 13:46
Show Gist options
  • Save hoangnt-2197/ca35324289b27d882a4c8e3c267b4fe2 to your computer and use it in GitHub Desktop.
Save hoangnt-2197/ca35324289b27d882a4c8e3c267b4fe2 to your computer and use it in GitHub Desktop.
@Document(collection = "notes")
@Setter
@Getter
@NoArgsConstructor
@AllArgsConstructor
class NoteEntity {
@Id
private String id;
private String description;
@Override
public String toString() {
return description;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment