Skip to content

Instantly share code, notes, and snippets.

@Ruhshan
Last active June 14, 2021 16:41
Show Gist options
  • Save Ruhshan/19432b20287fc7ec55ca255c22075246 to your computer and use it in GitHub Desktop.
Save Ruhshan/19432b20287fc7ec55ca255c22075246 to your computer and use it in GitHub Desktop.
@Data
@Entity
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class KeyValuePair {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
protected Long id;
private String key;
private String value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment