This commit is contained in:
孙小云 2026-03-13 11:53:03 +08:00
parent 6318ffae92
commit a8ff1cbd7c
1 changed files with 10 additions and 10 deletions

View File

@ -22,10 +22,10 @@ public class TaskStatQueryVO {
private Integer month;
/** 开始日期 */
private Date startDate;
private Date startTime;
/** 结束日期 */
private Date endDate;
private Date endTime;
/** 任务类别 */
private TaskCategoryEnum taskCategory;
@ -58,20 +58,20 @@ public class TaskStatQueryVO {
this.month = month;
}
public Date getStartDate() {
return startDate;
public Date getStartTime() {
return startTime;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public Date getEndDate() {
return endDate;
public Date getEndTime() {
return endTime;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public TaskCategoryEnum getTaskCategory() {