In DtbDoct sostituite date in localDate
This commit is contained in:
@@ -3,7 +3,7 @@ package it.integry.integrywmsnative.core.model;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
public class DtbDoct extends EntityBase{
|
||||
@@ -13,7 +13,7 @@ public class DtbDoct extends EntityBase{
|
||||
@SerializedName("codDtip")
|
||||
private String codDtip;
|
||||
@SerializedName("dataDoc")
|
||||
private Date dataDoc;
|
||||
private LocalDate dataDoc;
|
||||
@SerializedName("numDoc")
|
||||
private Integer numDoc;
|
||||
@SerializedName("serDoc")
|
||||
@@ -75,21 +75,21 @@ public class DtbDoct extends EntityBase{
|
||||
@SerializedName("controllatoDa")
|
||||
private String controllatoDa;
|
||||
@SerializedName("dataChkDoc")
|
||||
private Date dataChkDoc;
|
||||
private LocalDate dataChkDoc;
|
||||
@SerializedName("dataDocVal")
|
||||
private Date dataDocVal;
|
||||
private LocalDate dataDocVal;
|
||||
@SerializedName("dataInizTrasp")
|
||||
private Date dataInizTrasp;
|
||||
private LocalDate dataInizTrasp;
|
||||
@SerializedName("dataIns")
|
||||
private Date dataIns;
|
||||
private LocalDate dataIns;
|
||||
@SerializedName("dataOrd")
|
||||
private Date dataOrd;
|
||||
private LocalDate dataOrd;
|
||||
@SerializedName("dataReg")
|
||||
private Date dataReg;
|
||||
private LocalDate dataReg;
|
||||
@SerializedName("dataRifScad")
|
||||
private Date dataRifScad;
|
||||
private LocalDate dataRifScad;
|
||||
@SerializedName("dataUltMod")
|
||||
private Date dataUltMod;
|
||||
private LocalDate dataUltMod;
|
||||
@SerializedName("descrizionePaga")
|
||||
private String descrizionePaga;
|
||||
@SerializedName("flagPrzScontati")
|
||||
@@ -171,7 +171,7 @@ public class DtbDoct extends EntityBase{
|
||||
@SerializedName("tempMedia")
|
||||
private BigDecimal tempMedia;
|
||||
@SerializedName("dataCons")
|
||||
private Date dataCons;
|
||||
private LocalDate dataCons;
|
||||
@SerializedName("nolo")
|
||||
private BigDecimal nolo;
|
||||
@SerializedName("nolo2")
|
||||
@@ -197,7 +197,7 @@ public class DtbDoct extends EntityBase{
|
||||
@SerializedName("chkArtListino")
|
||||
private String chkArtListino;
|
||||
@SerializedName("dataCmov")
|
||||
private Date dataCmov;
|
||||
private LocalDate dataCmov;
|
||||
@SerializedName("reso")
|
||||
private String reso;
|
||||
@SerializedName("numCmovAutofattura")
|
||||
@@ -257,11 +257,11 @@ public class DtbDoct extends EntityBase{
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataDoc() {
|
||||
public LocalDate getDataDoc() {
|
||||
return dataDoc;
|
||||
}
|
||||
|
||||
public DtbDoct setDataDoc(Date dataDoc) {
|
||||
public DtbDoct setDataDoc(LocalDate dataDoc) {
|
||||
this.dataDoc = dataDoc;
|
||||
return this;
|
||||
}
|
||||
@@ -536,74 +536,74 @@ public class DtbDoct extends EntityBase{
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataChkDoc() {
|
||||
public LocalDate getDataChkDoc() {
|
||||
return dataChkDoc;
|
||||
}
|
||||
|
||||
public DtbDoct setDataChkDoc(Date dataChkDoc) {
|
||||
public DtbDoct setDataChkDoc(LocalDate dataChkDoc) {
|
||||
this.dataChkDoc = dataChkDoc;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataDocVal() {
|
||||
public LocalDate getDataDocVal() {
|
||||
return dataDocVal;
|
||||
}
|
||||
|
||||
public DtbDoct setDataDocVal(Date dataDocVal) {
|
||||
public DtbDoct setDataDocVal(LocalDate dataDocVal) {
|
||||
this.dataDocVal = dataDocVal;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataInizTrasp() {
|
||||
public LocalDate getDataInizTrasp() {
|
||||
return dataInizTrasp;
|
||||
}
|
||||
|
||||
public DtbDoct setDataInizTrasp(Date dataInizTrasp) {
|
||||
public DtbDoct setDataInizTrasp(LocalDate dataInizTrasp) {
|
||||
this.dataInizTrasp = dataInizTrasp;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataIns() {
|
||||
public LocalDate getDataIns() {
|
||||
return dataIns;
|
||||
}
|
||||
|
||||
public DtbDoct setDataIns(Date dataIns) {
|
||||
public DtbDoct setDataIns(LocalDate dataIns) {
|
||||
this.dataIns = dataIns;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataOrd() {
|
||||
public LocalDate getDataOrd() {
|
||||
return dataOrd;
|
||||
}
|
||||
|
||||
public DtbDoct setDataOrd(Date dataOrd) {
|
||||
public DtbDoct setDataOrd(LocalDate dataOrd) {
|
||||
this.dataOrd = dataOrd;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataReg() {
|
||||
public LocalDate getDataReg() {
|
||||
return dataReg;
|
||||
}
|
||||
|
||||
public DtbDoct setDataReg(Date dataReg) {
|
||||
public DtbDoct setDataReg(LocalDate dataReg) {
|
||||
this.dataReg = dataReg;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataRifScad() {
|
||||
public LocalDate getDataRifScad() {
|
||||
return dataRifScad;
|
||||
}
|
||||
|
||||
public DtbDoct setDataRifScad(Date dataRifScad) {
|
||||
public DtbDoct setDataRifScad(LocalDate dataRifScad) {
|
||||
this.dataRifScad = dataRifScad;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataUltMod() {
|
||||
public LocalDate getDataUltMod() {
|
||||
return dataUltMod;
|
||||
}
|
||||
|
||||
public DtbDoct setDataUltMod(Date dataUltMod) {
|
||||
public DtbDoct setDataUltMod(LocalDate dataUltMod) {
|
||||
this.dataUltMod = dataUltMod;
|
||||
return this;
|
||||
}
|
||||
@@ -968,11 +968,11 @@ public class DtbDoct extends EntityBase{
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataCons() {
|
||||
public LocalDate getDataCons() {
|
||||
return dataCons;
|
||||
}
|
||||
|
||||
public DtbDoct setDataCons(Date dataCons) {
|
||||
public DtbDoct setDataCons(LocalDate dataCons) {
|
||||
this.dataCons = dataCons;
|
||||
return this;
|
||||
}
|
||||
@@ -1085,11 +1085,11 @@ public class DtbDoct extends EntityBase{
|
||||
return this;
|
||||
}
|
||||
|
||||
public Date getDataCmov() {
|
||||
public LocalDate getDataCmov() {
|
||||
return dataCmov;
|
||||
}
|
||||
|
||||
public DtbDoct setDataCmov(Date dataCmov) {
|
||||
public DtbDoct setDataCmov(LocalDate dataCmov) {
|
||||
this.dataCmov = dataCmov;
|
||||
return this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user