dbf-exporter ExportToFileRequest добавил fileName

This commit is contained in:
ialbert 2023-08-10 17:38:53 +03:00
parent 5ed3f63e91
commit 06c809f48f

View file

@ -7,6 +7,8 @@ public class ExportToFileRequest {
private Long sdfGroupId; private Long sdfGroupId;
@JsonProperty @JsonProperty
private String nameOfTable; private String nameOfTable;
@JsonProperty
private String fileName;
public Long getSdfGroupId() { public Long getSdfGroupId() {
return sdfGroupId; return sdfGroupId;
@ -23,4 +25,12 @@ public class ExportToFileRequest {
public void setNameOfTable(String nameOfTable) { public void setNameOfTable(String nameOfTable) {
this.nameOfTable = nameOfTable; this.nameOfTable = nameOfTable;
} }
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
} }