Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SPSP Common Libraries
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clinbio
SPSP NG
SPSP Open Source Code
SPSP Common Libraries
Merge requests
!1
v1
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
v1
first
into
main
Overview
0
Commits
1
Pipelines
0
Changes
19
Merged
v1
Daniel Walther
requested to merge
first
into
main
Aug 29, 2023
Overview
0
Commits
1
Pipelines
0
Changes
19
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
b200e1bd
1 commit,
Aug 29, 2023
19 files
+
1960
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
src/main/java/swiss/sib/clinbio/spspshared/repository/EntityId.java
0 → 100644
+
15
−
0
View file @ b200e1bd
Edit in single-file editor
Open in Web IDE
package
swiss.sib.clinbio.spspshared.repository
;
import
jakarta.persistence.*
;
import
lombok.Getter
;
@MappedSuperclass
@Getter
public
class
EntityId
{
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
SEQUENCE
)
protected
long
id
;
@Version
protected
int
entityVersion
;
}
Loading