Merge branch 'dev' into dev-g

This commit is contained in:
Guoqs
2025-07-11 14:20:54 +08:00
27 changed files with 1123 additions and 448 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 ;
}