This commit is contained in:
YAS\29473
2025-09-26 14:55:18 +08:00
parent 297405471e
commit 60ced96cb5
3 changed files with 43 additions and 15 deletions

View File

@@ -2,19 +2,37 @@ package com.jsowell.pile.vo.web;
import lombok.Data;
import java.util.List;
@Data
public class OrderCountByTimeVO {
/**
* 时间段
*/
private String timeSlot;
/**
* 订单数量
* 订单数量
*/
private Integer orderCount;
private Integer totalCount;
private List<OrderCountByTimeListVO> orderCountByTimeList;
@Data
public static class OrderCountByTimeListVO {
/**
* 时间段
*/
private String timeSlot;
/**
* 订单数量
*/
private Integer orderCount;
private String startTime;
private String endTime;
private Integer count ;
}
private String startTime;
private String endTime;
private Integer count ;
}