Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sprachschulsystem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Pokorný
Sprachschulsystem
Merge requests
!23
An error occurred while fetching the assigned milestone of the selected merge_request.
M2 course tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
M2 course tests
M2-course-tests
into
M2
Overview
1
Commits
30
Pipelines
14
Changes
25
Merged
Ester Vilímková
requested to merge
M2-course-tests
into
M2
1 year ago
Overview
1
Commits
30
Pipelines
14
Changes
25
Expand
0
0
Merge request reports
Compare
M2
version 13
5979f72f
1 year ago
version 12
8da675b7
1 year ago
version 11
b2b2e44c
1 year ago
version 10
820139a0
1 year ago
version 9
6e290612
1 year ago
version 8
3508df02
1 year ago
version 7
ced97df2
1 year ago
version 6
5d6e67ed
1 year ago
version 5
3e4753b8
1 year ago
version 4
b57f05fc
1 year ago
version 3
3f4e0422
1 year ago
version 2
ad607fa6
1 year ago
version 1
46aa9fa4
1 year ago
M2 (base)
and
latest version
latest version
9eae414a
30 commits,
1 year ago
version 13
5979f72f
28 commits,
1 year ago
version 12
8da675b7
26 commits,
1 year ago
version 11
b2b2e44c
25 commits,
1 year ago
version 10
820139a0
24 commits,
1 year ago
version 9
6e290612
23 commits,
1 year ago
version 8
3508df02
20 commits,
1 year ago
version 7
ced97df2
19 commits,
1 year ago
version 6
5d6e67ed
18 commits,
1 year ago
version 5
3e4753b8
17 commits,
1 year ago
version 4
b57f05fc
16 commits,
1 year ago
version 3
3f4e0422
11 commits,
1 year ago
version 2
ad607fa6
10 commits,
1 year ago
version 1
46aa9fa4
9 commits,
1 year ago
25 files
+
1571
−
251
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
application/model/src/main/java/org/fuseri/model/dto/common/DomainObjectDto.java
+
2
−
0
Options
package
org.fuseri.model.dto.common
;
import
jakarta.validation.constraints.NotNull
;
import
lombok.EqualsAndHashCode
;
import
lombok.Getter
;
import
lombok.Setter
;
@Getter
@Setter
@EqualsAndHashCode
(
exclude
=
"id"
)
public
abstract
class
DomainObjectDto
{
@NotNull
Loading