16 lines
339 B
Java
16 lines
339 B
Java
package ru.ulstu.statistic.model;
|
|
|
|
import ru.ulstu.report.model.ReportPeriod;
|
|
|
|
public class StatisticForm {
|
|
private ReportPeriod reportPeriod;
|
|
|
|
public ReportPeriod getReportPeriod() {
|
|
return reportPeriod;
|
|
}
|
|
|
|
public void setReportPeriod(ReportPeriod reportPeriod) {
|
|
this.reportPeriod = reportPeriod;
|
|
}
|
|
}
|