123456789101112131415161718192021222324252627 |
- /*
- * Copyright (c) 02 Feb 2025, Andrew Grant of Carrick Software .
- * All rights reserved.
- */
- package scot.carricksoftware.grants;
- import jakarta.persistence.GeneratedValue;
- import jakarta.persistence.GenerationType;
- import jakarta.persistence.Id;
- import jakarta.persistence.MappedSuperclass;
- @MappedSuperclass
- public class BaseEntity {
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- private Long id;
- public void setId(Long id) {
- this.id = id;
- }
- public Long getId() {
- return id;
- }
- }
|