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;
|
||||
@JsonProperty
|
||||
private String nameOfTable;
|
||||
@JsonProperty
|
||||
private String fileName;
|
||||
|
||||
public Long getSdfGroupId() {
|
||||
return sdfGroupId;
|
||||
|
|
@ -23,4 +25,12 @@ public class ExportToFileRequest {
|
|||
public void setNameOfTable(String 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