Skip to content

Instantly share code, notes, and snippets.

@baso53
Created November 14, 2021 11:54
Show Gist options
  • Save baso53/866e36c1f0ea385b98d3f76141bc0207 to your computer and use it in GitHub Desktop.
Save baso53/866e36c1f0ea385b98d3f76141bc0207 to your computer and use it in GitHub Desktop.
@Entity
@Getter
@Setter
public class Subsidiary {
@Id
private Long id;
private String name;
private String city;
@ManyToOne
private Company company;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment