update临时接口条件统计订单数量

This commit is contained in:
YAS\29473
2025-07-07 08:23:41 +08:00
parent 2933816266
commit caf20dc6ec
5 changed files with 160 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
@Data
public class OrderCountByTimeVO {
/**
* 时间段
*/
private String timeSlot;
/**
* 订单数量
*/
private Integer orderCount;
private String startTime;
private String endTime;
private Integer count ;
}