数据统计

This commit is contained in:
Tankaikai
2025-03-19 11:26:47 +08:00
parent aed4034757
commit 778cac8839
6 changed files with 12 additions and 7 deletions

View File

@@ -126,6 +126,10 @@ public class ShopOrderStatistic implements Serializable {
* 充值金额
*/
private BigDecimal rechargeAmount = BigDecimal.ZERO;
/**
* 充值退款金额
*/
private BigDecimal rechargeRefundAmount = BigDecimal.ZERO;
/**
* 客单价
*/

View File

@@ -21,12 +21,12 @@ public class DataSummaryTradeParam implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 开始时间 格式yyyy-MM-dd
* 开始时间 格式yyyy-MM-dd HH:mm:ss
*/
@NotBlank(message = "开始日期不能为空", groups = DefaultGroup.class)
private String beginDate;
/**
* 结束时间 格式yyyy-MM-dd
* 结束时间 格式yyyy-MM-dd HH:mm:ss
*/
@NotBlank(message = "结束日期不能为空", groups = DefaultGroup.class)
private String endDate;

View File

@@ -31,11 +31,11 @@ public class SaleSummaryCountParam implements Serializable {
*/
private Long prodCategoryId;
/**
* 开始日期 格式yyyy-MM-dd
* 开始日期 格式yyyy-MM-dd HH:mm:ss
*/
private String beginDate;
/**
* 结束日期 格式yyyy-MM-dd
* 结束日期 格式yyyy-MM-dd HH:mm:ss
*/
private String endDate;
}

View File

@@ -19,11 +19,11 @@ public class TableSummaryParam implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 开始时间 格式yyyy-MM-dd
* 开始时间 格式yyyy-MM-dd HH:mm:ss
*/
private String beginDate;
/**
* 结束时间 格式yyyy-MM-dd
* 结束时间 格式yyyy-MM-dd HH:mm:ss
*/
private String endDate;
/**

View File

@@ -19,7 +19,7 @@ import java.math.BigDecimal;
*/
@NoArgsConstructor
@Data
@ColumnWidth(30)
@ColumnWidth(20)
public class TableSummaryInfoVo implements Serializable {
@Serial