This commit is contained in:
parent
6318ffae92
commit
a8ff1cbd7c
|
|
@ -22,10 +22,10 @@ public class TaskStatQueryVO {
|
||||||
private Integer month;
|
private Integer month;
|
||||||
|
|
||||||
/** 开始日期 */
|
/** 开始日期 */
|
||||||
private Date startDate;
|
private Date startTime;
|
||||||
|
|
||||||
/** 结束日期 */
|
/** 结束日期 */
|
||||||
private Date endDate;
|
private Date endTime;
|
||||||
|
|
||||||
/** 任务类别 */
|
/** 任务类别 */
|
||||||
private TaskCategoryEnum taskCategory;
|
private TaskCategoryEnum taskCategory;
|
||||||
|
|
@ -58,20 +58,20 @@ public class TaskStatQueryVO {
|
||||||
this.month = month;
|
this.month = month;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getStartDate() {
|
public Date getStartTime() {
|
||||||
return startDate;
|
return startTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setStartDate(Date startDate) {
|
public void setStartTime(Date startTime) {
|
||||||
this.startDate = startDate;
|
this.startTime = startTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getEndDate() {
|
public Date getEndTime() {
|
||||||
return endDate;
|
return endTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setEndDate(Date endDate) {
|
public void setEndTime(Date endTime) {
|
||||||
this.endDate = endDate;
|
this.endTime = endTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public TaskCategoryEnum getTaskCategory() {
|
public TaskCategoryEnum getTaskCategory() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue