Merge branch 'master' into develop
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
package it.integry.ems.document.Import.dto;
|
||||
|
||||
import java.time.LocalDate;
|
||||
|
||||
public class AckIntesaDTO {
|
||||
|
||||
private String tipo;
|
||||
private int IdFile;
|
||||
private String tipoDoc;
|
||||
private LocalDate DataFirma;
|
||||
private String numDoc;
|
||||
private LocalDate dataDoc;
|
||||
private String pIva;
|
||||
private String codFisc;
|
||||
private String fileName;
|
||||
|
||||
public String getTipo() {
|
||||
return tipo;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setTipo(String tipo) {
|
||||
this.tipo = tipo;
|
||||
return this;
|
||||
}
|
||||
|
||||
public int getIdFile() {
|
||||
return IdFile;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setIdFile(int idFile) {
|
||||
IdFile = idFile;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getTipoDoc() {
|
||||
return tipoDoc;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setTipoDoc(String tipoDoc) {
|
||||
this.tipoDoc = tipoDoc;
|
||||
return this;
|
||||
}
|
||||
|
||||
public LocalDate getDataFirma() {
|
||||
return DataFirma;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setDataFirma(LocalDate dataFirma) {
|
||||
DataFirma = dataFirma;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getNumDoc() {
|
||||
return numDoc;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setNumDoc(String numDoc) {
|
||||
this.numDoc = numDoc;
|
||||
return this;
|
||||
}
|
||||
|
||||
public LocalDate getDataDoc() {
|
||||
return dataDoc;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setDataDoc(LocalDate dataDoc) {
|
||||
this.dataDoc = dataDoc;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getpIva() {
|
||||
return pIva;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setpIva(String pIva) {
|
||||
this.pIva = pIva;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCodFisc() {
|
||||
return codFisc;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setCodFisc(String codFisc) {
|
||||
this.codFisc = codFisc;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public AckIntesaDTO setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user