Skip to content

Instantly share code, notes, and snippets.

@Romeh
Created September 3, 2018 13:04
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 Romeh/ae7ab950d2441cb29d8040ab2a81dec0 to your computer and use it in GitHub Desktop.
Save Romeh/ae7ab950d2441cb29d8040ab2a81dec0 to your computer and use it in GitHub Desktop.
@Entity(name = "customer")
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class Customer {
@Id
private long id;
private String name;
private String address;
private boolean isActive;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment