inserito campo cod_vdes nella mtb_aart_anag e cancellati duplicati su format e gestfood
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-12-10 10:33:57 +01:00
parent fa76a8e92d
commit 0e1adccb7c

View File

@@ -63,6 +63,9 @@ public class MtbAartAnag extends EntityBase {
@SqlField(value = "note", maxLength = 255) @SqlField(value = "note", maxLength = 255)
private String note; private String note;
@SqlField(value = "cod_vdes", maxLength = 5)
private String codVdes;
public MtbAartAnag() { public MtbAartAnag() {
super(logger); super(logger);
} }
@@ -174,4 +177,13 @@ public class MtbAartAnag extends EntityBase {
this.note = note; this.note = note;
return this; return this;
} }
public String getCodVdes() {
return codVdes;
}
public MtbAartAnag setCodVdes(String codVdes) {
this.codVdes = codVdes;
return this;
}
} }