Skip to content

Instantly share code, notes, and snippets.

@evrentan
Created October 24, 2021 21:21
Show Gist options
  • Save evrentan/77960f1599d56226ef353cc7ec78a98a to your computer and use it in GitHub Desktop.
Save evrentan/77960f1599d56226ef353cc7ec78a98a to your computer and use it in GitHub Desktop.
Declare a Class with Lombok
package com.tan.myjavarecordexample.dto;
import lombok.Data;
import java.io.Serializable;
@Data
public class EnterpriseLombok implements Serializable {
String id;
String name;
String address;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment