dbf-exporter ExportToFileRequest добавил fileName
This commit is contained in:
parent
5ed3f63e91
commit
06c809f48f
1 changed files with 10 additions and 0 deletions
|
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Reference in a new issue