Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Online Banking Service
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Filip Kollár
Online Banking Service
Merge requests
!8
An error occurred while fetching the assigned milestone of the selected merge_request.
Change types for currencies to BigDecimal
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Change types for currencies to BigDecimal
change-types-for-currencies
into
master
Overview
0
Commits
1
Pipelines
0
Changes
8
Merged
Filip Fábry
requested to merge
change-types-for-currencies
into
master
11 months ago
Overview
0
Commits
1
Pipelines
0
Changes
8
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
798459b1
1 commit,
11 months ago
8 files
+
57
−
47
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
transaction-service/src/main/java/cz/muni/fi/obs/api/CurrencyExchangeResult.java
+
5
−
3
Options
package
cz.muni.fi.obs.api
;
import
java.math.BigDecimal
;
import
lombok.Builder
;
@Builder
public
record
CurrencyExchangeResult
(
String
symbolFrom
,
String
symbolTo
,
long
exchangedRate
,
long
sourceAmount
,
long
exchangedAmount
)
{
BigDecimal
exchangedRate
,
BigDecimal
sourceAmount
,
BigDecimal
exchangedAmount
)
{
}
Loading