Last active
June 14, 2021 16:41
-
-
Save Ruhshan/19432b20287fc7ec55ca255c22075246 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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