From 4cac7be4cc79c4f85f4348cd873ce5ec00dc9bb8 Mon Sep 17 00:00:00 2001 From: FabioN Date: Tue, 27 Feb 2024 18:41:06 +0100 Subject: [PATCH] Aggiunta campo ID_LOTTO in DTB_DOCT --- .../java/it/integry/ems_model/entity/DtbDoct.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ems-core/src/main/java/it/integry/ems_model/entity/DtbDoct.java b/ems-core/src/main/java/it/integry/ems_model/entity/DtbDoct.java index 6978c0a0c4..dc81b4f94e 100644 --- a/ems-core/src/main/java/it/integry/ems_model/entity/DtbDoct.java +++ b/ems-core/src/main/java/it/integry/ems_model/entity/DtbDoct.java @@ -316,6 +316,9 @@ public class DtbDoct extends DtbBaseDocT { @SqlField(value = "cod_lingua", nullable = true) private String codLingua; + + @SqlField(value = "id_lotto", nullable = true) + private Integer idLotto; @JsonProperty(value = "explodeKit") private String explodeKit; @@ -1206,6 +1209,14 @@ public class DtbDoct extends DtbBaseDocT { return this; } + public Integer getIdLotto() { + return idLotto; + } + + public void setIdLotto(Integer idLotto) { + this.idLotto = idLotto; + } + @Override public String getExplodeKit() { return explodeKit;