add parameter dates
This commit is contained in:
parent
601846594c
commit
afd252f83b
3 changed files with 7413 additions and 0 deletions
|
|
@ -1,11 +1,16 @@
|
|||
package dto;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
public class ExportDataRequest {
|
||||
public String type;
|
||||
public List<String> ids;
|
||||
|
||||
public LocalDate startDate;
|
||||
|
||||
public LocalDate endDate;
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
|
@ -21,4 +26,20 @@ public class ExportDataRequest {
|
|||
public void setIds(List<String> ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public LocalDate getStartDate() {
|
||||
return startDate;
|
||||
}
|
||||
|
||||
public void setStartDate(LocalDate startDate) {
|
||||
this.startDate = startDate;
|
||||
}
|
||||
|
||||
public LocalDate getEndDate() {
|
||||
return endDate;
|
||||
}
|
||||
|
||||
public void setEndDate(LocalDate endDate) {
|
||||
this.endDate = endDate;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue