Skip to content

Commit

Permalink
fix: mapping exception in connect record id field
Browse files Browse the repository at this point in the history
  • Loading branch information
BoehmDo committed Oct 23, 2024
1 parent e338f6b commit 52ea03e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@EqualsAndHashCode(onlyExplicitlyIncluded = true, callSuper = false)
public class MeldungExport extends OnkoResource {

@EqualsAndHashCode.Include Integer id;
@EqualsAndHashCode.Include String id;

@EqualsAndHashCode.Include String referenz_nummer;

Expand All @@ -27,7 +27,7 @@ public class MeldungExport extends OnkoResource {

@JsonProperty("payload")
public void getPayload(Map<String, Object> payload) {
this.id = getInt(payload, "ID");
this.id = getString(payload, "ID");
this.referenz_nummer = getString(payload, "REFERENZ_NUMMER");
this.lkr_meldung = getString(payload, "LKR_MELDUNG");
this.versionsnummer = getInt(payload, "VERSIONSNUMMER");
Expand Down

0 comments on commit 52ea03e

Please sign in to comment.